/* style/bn-c.css */
:root {
    --primary-color: #1A202C; /* Dark Blue/Black */
    --secondary-color: #FFD700; /* Gold */
    --text-color-light: #F0F0F0;
    --text-color-dark: #333333;
    --bg-light: #FFFFFF;
    --bg-dark: #12161E; /* Slightly lighter than primary for contrast */
    --border-color: #e0e0e0;
}

.page-bn-c {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--bg-light);
}

.page-bn-c .content-padding {
    padding: 60px 20px;
}

.page-bn-c .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-bn-c .section-title {
    font-size: 38px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
}

.page-bn-c .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-bn-c .text-light {
    color: var(--text-color-light);
}

.page-bn-c .highlight {
    color: var(--secondary-color);
    font-weight: bold;
}

.page-bn-c .center-text {
    text-align: center;
    margin-top: 40px;
}

/* Hero Section */
.page-bn-c .hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: var(--primary-color);
    overflow: hidden;
}

.page-bn-c .hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.page-bn-c .hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-bn-c .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-bn-c .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    color: var(--text-color-light);
}

.page-bn-c .hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-color-light);
    line-height: 1.2;
}

.page-bn-c .hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color-light);
}

.page-bn-c .hero-description a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-bn-c .cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-bn-c .cta-button:hover {
    background: #FFC107; /* Slightly brighter gold */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-bn-c .small-cta {
    padding: 12px 30px;
    font-size: 18px;
}

.page-bn-c .large-cta {
    padding: 22px 55px;
    font-size: 24px;
}

/* Introduction Section */
.page-bn-c .introduction-section p {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-bn-c .introduction-section p a {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
}

.page-bn-c .introduction-section p a:hover {
    text-decoration: underline;
}

/* Features Section */
.page-bn-c .bg-dark-gradient {
    background-color: var(--bg-dark);
}

.page-bn-c .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-bn-c .feature-item {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-bn-c .feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-bn-c .feature-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-bn-c .feature-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.page-bn-c .feature-description {
    font-size: 16px;
    color: var(--text-color-light);
}

/* How-To-Play Section */
.page-bn-c .how-to-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-bn-c .how-to-list li {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-bn-c .how-to-list .list-title {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-bn-c .how-to-list p {
    font-size: 16px;
    text-align: left;
    margin-bottom: 0;
}

.page-bn-c .how-to-list p a {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
}

.page-bn-c .how-to-list p a:hover {
    text-decoration: underline;
}

/* Strategy Section */
.page-bn-c .strategy-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-bn-c .strategy-list li {
    background-color: var(--primary-color);
    border-left: 5px solid var(--secondary-color);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-bn-c .strategy-list .list-title {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.page-bn-c .strategy-list p {
    font-size: 16px;
    text-align: left;
    margin-bottom: 0;
    color: var(--text-color-light);
}

/* Promotions Section */
.page-bn-c .promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-bn-c .promo-card {
    background-color: var(--bg-light);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-bn-c .promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-bn-c .promo-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.page-bn-c .promo-title {
    font-size: 24px;
    color: var(--primary-color);
    margin: 20px 15px 10px;
}

.page-bn-c .promo-description {
    font-size: 16px;
    color: var(--text-color-dark);
    padding: 0 15px 20px;
}

.page-bn-c .promo-button {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.page-bn-c .promo-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Safety & Support Section */
.page-bn-c .support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-bn-c .support-item {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-bn-c .support-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-bn-c .support-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.page-bn-c .support-description {
    font-size: 16px;
    color: var(--text-color-light);
}

/* FAQ Section */
.page-bn-c .faq-list {
    margin-top: 40px;
}

.page-bn-c .faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.page-bn-c .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: var(--bg-light);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-bn-c .faq-question:hover {
    background: #f5f5f5;
}

.page-bn-c .faq-question h3 {
    margin: 0;
    font-size: 20px;
    color: var(--primary-color);
}

.page-bn-c .faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    line-height: 1;
}

.page-bn-c .faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--secondary-color);
}

.page-bn-c .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background-color: #f9f9f9;
    color: var(--text-color-dark);
}

.page-bn-c .faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 20px 25px;
}

.page-bn-c .faq-answer p {
    margin: 0;
    font-size: 16px;
}

/* Conclusion Section */
.page-bn-c .conclusion-section p {
    font-size: 18px;
    margin-bottom: 30px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-bn-c .conclusion-section p a {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
}

.page-bn-c .conclusion-section p a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-bn-c .section-title {
        font-size: 32px;
    }
    .page-bn-c .hero-title {
        font-size: 40px;
    }
    .page-bn-c .hero-description {
        font-size: 18px;
    }
    .page-bn-c .cta-button {
        padding: 15px 35px;
        font-size: 18px;
    }
    .page-bn-c .large-cta {
        padding: 18px 45px;
        font-size: 20px;
    }
    .page-bn-c .feature-title, .page-bn-c .support-title, .page-bn-c .promo-title {
        font-size: 22px;
    }
    .page-bn-c .how-to-list .list-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .page-bn-c .content-padding {
        padding: 40px 15px;
    }
    .page-bn-c .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .page-bn-c .hero-section {
        padding: 40px 15px;
    }
    .page-bn-c .hero-title {
        font-size: 32px;
    }
    .page-bn-c .hero-description {
        font-size: 16px;
    }
    .page-bn-c .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    .page-bn-c .large-cta {
        padding: 15px 35px;
        font-size: 18px;
    }
    .page-bn-c .features-grid, .page-bn-c .promo-grid, .page-bn-c .support-grid {
        grid-template-columns: 1fr;
    }
    .page-bn-c .feature-icon, .page-bn-c .support-icon {
        width: 120px;
        height: 120px;
    }
    .page-bn-c .faq-question {
        padding: 15px 20px;
    }
    .page-bn-c .faq-question h3 {
        font-size: 18px;
    }
    .page-bn-c .faq-answer {
        padding: 0 20px;
    }
    .page-bn-c .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-bn-c .hero-title {
        font-size: 28px;
    }
    .page-bn-c .hero-image {
        margin-bottom: 20px;
    }
    .page-bn-c .section-title {
        font-size: 24px;
    }
    .page-bn-c .feature-title, .page-bn-c .support-title, .page-bn-c .promo-title {
        font-size: 20px;
    }
    .page-bn-c .how-to-list .list-title, .page-bn-c .strategy-list .list-title {
        font-size: 18px;
    }
    .page-bn-c .promo-image {
        height: 200px;
    }
}