:root {
    --page-bnc-primary-color: #11A84E;
    --page-bnc-secondary-color: #22C768;
    --page-bnc-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --page-bnc-card-bg: #11271B;
    --page-bnc-background: #08160F;
    --page-bnc-text-main: #F2FFF6;
    --page-bnc-text-secondary: #A7D9B8;
    --page-bnc-border-color: #2E7A4E;
    --page-bnc-glow-color: #57E38D;
    --page-bnc-gold-color: #F2C14E;
    --page-bnc-divider-color: #1E3A2A;
    --page-bnc-deep-green: #0A4B2C;
}

.page-bnc {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Default text color for light background body */
    line-height: 1.6;
    background-color: #f8f9fa; /* Assuming body background is light as per prompt */
}

.page-bnc a {
    color: var(--page-bnc-primary-color);
    text-decoration: none;
}

.page-bnc a:hover {
    text-decoration: underline;
}

/* Section Styling */
.page-bnc__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    overflow: hidden;
}

.page-bnc__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 400px;
}

.page-bnc__hero-content {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    transform: translateY(-50px);
    z-index: 10;
    text-align: center;
    color: #333333;
}

.page-bnc__main-title {
    font-size: clamp(2em, 5vw, 3em);
    font-weight: 700;
    color: var(--page-bnc-primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-bnc__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #555555;
}

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

.page-bnc__btn-primary,
.page-bnc__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-bnc__btn-primary {
    background: var(--page-bnc-button-gradient);
    color: var(--page-bnc-text-main);
    border: none;
}

.page-bnc__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-bnc__btn-secondary {
    background-color: transparent;
    color: var(--page-bnc-primary-color);
    border: 2px solid var(--page-bnc-primary-color);
}

.page-bnc__btn-secondary:hover {
    background-color: var(--page-bnc-primary-color);
    color: var(--page-bnc-text-main);
    transform: translateY(-2px);
}

/* General content sections */
.page-bnc__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-bnc__section-title {
    font-size: 2.2em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--page-bnc-primary-color);
    padding-top: 60px;
}

.page-bnc__text-block {
    font-size: 1.05em;
    margin-bottom: 25px;
    line-height: 1.7;
    text-align: justify;
}

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

/* Light background sections */
.page-bnc__light-bg {
    background-color: #ffffff;
    color: #333333;
    padding: 60px 0;
}

.page-bnc__light-bg .page-bnc__section-title {
    color: var(--page-bnc-deep-green);
}

.page-bnc__light-bg .page-bnc__text-block,
.page-bnc__light-bg .page-bnc__feature-description,
.page-bnc__light-bg .page-bnc__step-description,
.page-bnc__light-bg .page-bnc__strategy-description,
.page-bnc__light-bg .page-bnc__benefit-description,
.page-bnc__light-bg .page-bnc__faq-answer p {
    color: #555555;
}

/* Dark background sections */
.page-bnc__dark-bg {
    background-color: var(--page-bnc-background);
    color: var(--page-bnc-text-main);
    padding: 60px 0;
}

.page-bnc__dark-bg .page-bnc__section-title {
    color: var(--page-bnc-gold-color);
}

.page-bnc__dark-bg .page-bnc__text-block,
.page-bnc__dark-bg .page-bnc__feature-description,
.page-bnc__dark-bg .page-bnc__step-description,
.page-bnc__dark-bg .page-bnc__strategy-description,
.page-bnc__dark-bg .page-bnc__benefit-description,
.page-bnc__dark-bg .page-bnc__faq-answer p {
    color: var(--page-bnc-text-secondary);
}

.page-bnc__dark-bg a {
    color: var(--page-bnc-glow-color);
}

/* Feature Grid */
.page-bnc__feature-grid,
.page-bnc__benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-bnc__feature-card,
.page-bnc__benefit-card {
    background-color: var(--page-bnc-card-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    border: 1px solid var(--page-bnc-border-color);
    color: var(--page-bnc-text-main);
}

.page-bnc__feature-card:hover,
.page-bnc__benefit-card:hover {
    transform: translateY(-5px);
}

.page-bnc__feature-icon {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-bnc__feature-title,
.page-bnc__benefit-title {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--page-bnc-gold-color);
}

.page-bnc__feature-description,
.page-bnc__benefit-description {
    font-size: 0.95em;
    color: var(--page-bnc-text-secondary);
}

/* How to Play Steps */
.page-bnc__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-bnc__step-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.page-bnc__step-title {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--page-bnc-primary-color);
}

.page-bnc__step-description {
    font-size: 0.95em;
    color: #666;
}

/* Strategy List */
.page-bnc__strategy-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-bnc__strategy-item {
    background-color: var(--page-bnc-card-bg);
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    border-left: 5px solid var(--page-bnc-gold-color);
}

.page-bnc__strategy-title {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--page-bnc-gold-color);
}

.page-bnc__strategy-description {
    font-size: 1em;
    color: var(--page-bnc-text-secondary);
}

/* FAQ Section */
.page-bnc__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-bnc__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-bnc__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--page-bnc-deep-green);
    cursor: pointer;
    background-color: #f0f0f0;
    transition: background-color 0.3s ease;
    list-style: none;
}

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

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

.page-bnc__faq-qtext {
    flex-grow: 1;
}

.page-bnc__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--page-bnc-primary-color);
}

.page-bnc__faq-item[open] .page-bnc__faq-toggle {
    content: "−";
}

.page-bnc__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1em;
    color: #666;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
}

.page-bnc__faq-answer p {
    margin: 0;
    color: #666;
}

/* CTA Section */
.page-bnc__cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--page-bnc-deep-green);
}

.page-bnc__cta-section .page-bnc__section-title {
    color: var(--page-bnc-gold-color);
    padding-top: 0;
}

.page-bnc__cta-section .page-bnc__text-block {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-bnc-text-main);
}

.page-bnc__cta-section .page-bnc__cta-buttons {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-bnc__hero-content {
        transform: translateY(-30px);
        margin: 0 15px;
    }
}

@media (max-width: 768px) {
    .page-bnc__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

    .page-bnc__description {
        font-size: 1em;
    }

    .page-bnc__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
        padding-top: 40px;
    }

    .page-bnc__hero-content {
        padding: 30px 15px;
        transform: translateY(0);
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        padding-top: 20px;
    }

    .page-bnc__hero-section {
        padding-bottom: 20px;
    }

    .page-bnc__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-bnc__btn-primary,
    .page-bnc__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-bnc__feature-grid,
    .page-bnc__benefit-grid,
    .page-bnc__steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-bnc img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-bnc__section,
    .page-bnc__card,
    .page-bnc__container,
    .page-bnc__hero-section,
    .page-bnc__introduction-section,
    .page-bnc__features-section,
    .page-bnc__how-to-play-section,
    .page-bnc__strategy-section,
    .page-bnc__promotions-section,
    .page-bnc__benefits-section,
    .page-bnc__faq-section,
    .page-bnc__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-bnc__light-bg,
    .page-bnc__dark-bg,
    .page-bnc__cta-section {
        padding-left: 15px;
        padding-right: 15px;
    }

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

    .page-bnc__faq-answer {
        padding: 10px 20px 15px;
    }

    .page-bnc__hero-image {
        min-height: 250px;
    }
    .page-bnc__video-section {
        padding-top: 10px !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-bnc__video-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-bnc video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-bnc__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}