/* style/bn-c.css */
:root {
    --primary-color: #007bff;
    --secondary-color: #dc3545;
    --text-color-dark: #333;
    --text-color-light: #fff;
    --bg-light: #f8f9fa;
    --bg-dark: #343a40;
    --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 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-bn-c .section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
    font-weight: bold;
}

.page-bn-c .text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-bn-c .cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-color-light);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.page-bn-c .cta-button:hover {
    background: darken(var(--secondary-color), 10%);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Hero Banner */
.page-bn-c .hero-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    color: var(--text-color-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-bn-c .hero-banner .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.page-bn-c .hero-content {
    max-width: 800px;
    z-index: 2;
}

.page-bn-c .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-bn-c .hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-bn-c .hero-image {
    width: 100%;
    max-width: 900px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.page-bn-c .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* About Section */
.page-bn-c .section-about {
    padding: 60px 0;
    background-color: var(--bg-light);
}

/* Why Choose Section */
.page-bn-c .section-why-choose {
    padding: 60px 0;
    background-color: #e9ecef;
}

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

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

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

.page-bn-c .feature-icon {
    width: 100%;
    max-width: 250px; /* Ensure images are not small icons */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

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

.page-bn-c .feature-description {
    font-size: 1em;
    color: #666;
}

/* Gameplay Section */
.page-bn-c .section-gameplay {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.page-bn-c .gameplay-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-bn-c .step-item {
    background: var(--text-color-light);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-color);
}

.page-bn-c .step-title {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-bn-c .step-description {
    font-size: 1em;
    color: #555;
}

.page-bn-c .cta-mid-section {
    text-align: center;
    margin-top: 50px;
}

.page-bn-c .cta-mid-section p {
    font-size: 1.2em;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Promotions Section */
.page-bn-c .section-promotions {
    padding: 60px 0;
    background-color: #e9ecef;
}

.page-bn-c .promotion-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-bn-c .promotion-list li {
    background: var(--text-color-light);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1em;
}

.page-bn-c .promo-icon {
    width: 100%;
    max-width: 150px; /* Ensure images are not small icons */
    height: auto;
    flex-shrink: 0;
    border-radius: 5px;
    object-fit: cover;
}

.page-bn-c .promotion-list li strong {
    color: var(--secondary-color);
}

/* FAQ Section */
.page-bn-c .faq-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.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;
}

.page-bn-c .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--text-color-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: 1.2em;
    color: var(--primary-color);
}

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

.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;
    background: #f9f9f9;
    padding: 0 20px;
    color: #555;
}

.page-bn-c .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 15px 20px;
}

.page-bn-c .faq-answer p {
    margin: 0;
}

/* Final CTA Section */
.page-bn-c .cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c82333 100%);
    color: var(--text-color-light);
    text-align: center;
}

.page-bn-c .cta-final .section-title {
    color: var(--text-color-light);
    margin-bottom: 30px;
}

.page-bn-c .cta-final .text-content {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Links in content */
.page-bn-c a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-bn-c .hero-title {
        font-size: 2.8em;
    }
    .page-bn-c .hero-description {
        font-size: 1.1em;
    }
    .page-bn-c .section-title {
        font-size: 2em;
    }
    .page-bn-c .grid-features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-bn-c .feature-icon {
        max-width: 200px;
    }
    .page-bn-c .promo-icon {
        max-width: 120px;
    }
}

@media (max-width: 768px) {
    .page-bn-c .hero-banner {
        padding: 60px 0;
    }
    .page-bn-c .hero-title {
        font-size: 2.2em;
    }
    .page-bn-c .hero-description {
        font-size: 1em;
    }
    .page-bn-c .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-bn-c .section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-bn-c .text-content {
        font-size: 0.95em;
    }
    .page-bn-c .grid-features,
    .page-bn-c .gameplay-steps {
        grid-template-columns: 1fr;
    }
    .page-bn-c .feature-item, .page-bn-c .step-item {
        padding: 20px;
    }
    .page-bn-c .feature-icon {
        max-width: 180px;
    }
    .page-bn-c .promotion-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-bn-c .promo-icon {
        margin-bottom: 10px;
        max-width: 100px;
    }
    .page-bn-c .faq-question {
        padding: 12px 15px;
    }
    .page-bn-c .faq-question h3 {
        font-size: 1.1em;
    }
    .page-bn-c .faq-toggle {
        font-size: 20px;
    }
    .page-bn-c .faq-answer {
        padding: 0 15px;
    }
    .page-bn-c .faq-item.active .faq-answer {
        padding: 15px;
    }
    .page-bn-c .cta-final {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-bn-c .hero-title {
        font-size: 1.8em;
    }
    .page-bn-c .hero-description {
        font-size: 0.9em;
    }
    .page-bn-c .section-title {
        font-size: 1.5em;
    }
    .page-bn-c .cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-bn-c .feature-icon {
        max-width: 150px;
    }
    .page-bn-c .promo-icon {
        max-width: 80px;
    }
}