/* style/bn-c.css */
.page-bn-c {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-bn-c__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-bn-c__highlight {
    color: #0A2463;
    font-weight: bold;
}

.page-bn-c__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.page-bn-c__btn--primary {
    background-color: #FFD700;
    color: #0A2463;
    border: 2px solid #FFD700;
}

.page-bn-c__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-bn-c__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-bn-c__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
    transform: translateY(-2px);
}

.page-bn-c__btn--inline {
    margin-top: 20px;
    background-color: #0A2463;
    color: #FFD700;
    border: 2px solid #0A2463;
}

.page-bn-c__btn--inline:hover {
    background-color: #1a3a7c;
    border-color: #1a3a7c;
}

.page-bn-c__btn--card {
    margin-top: 15px;
    width: calc(100% - 30px);
    font-size: 0.9em;
}

.page-bn-c__btn--center {
    display: block;
    margin: 30px auto 0 auto;
    max-width: 250px;
}

/* Hero Section */
.page-bn-c__hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #1a3a7c 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-bn-c__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-bn-c__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
}

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

/* General Section Styling */
.page-bn-c__section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    position: relative;
}

.page-bn-c__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-bn-c__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: -20px auto 40px auto;
    color: #555;
}

/* About Section */
.page-bn-c__about-section {
    padding: 60px 0;
    background-color: #fff;
}

.page-bn-c__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.page-bn-c__text-content {
    flex: 1;
    min-width: 300px;
}

.page-bn-c__text-content p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #444;
}

.page-bn-c__image-content {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-bn-c__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Game Modes Section */
.page-bn-c__game-modes-section {
    padding: 60px 0;
    background-color: #f0f4f7;
}

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

.page-bn-c__game-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.page-bn-c__game-card:hover {
    transform: translateY(-5px);
}

.page-bn-c__card-image {
    max-width: 100%;
    height: 180px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-bn-c__card-title {
    font-size: 1.6em;
    color: #0A2463;
    margin-bottom: 10px;
}

.page-bn-c__card-text {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 15px;
}

/* Strategy Section */
.page-bn-c__strategy-section {
    padding: 60px 0;
    background-color: #fff;
}

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

.page-bn-c__strategy-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-bn-c__strategy-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-bn-c__strategy-item p {
    font-size: 1.05em;
    color: #555;
    margin-bottom: 20px;
    text-align: left;
}

.page-bn-c__strategy-image {
    max-width: 100%;
    height: 200px; /* Fixed height */
    object-fit: cover;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-bn-c__final-strategy-tip {
    text-align: center;
    font-style: italic;
    margin-top: 40px;
    font-size: 1.1em;
    color: #666;
}

/* Features Section */
.page-bn-c__features-section {
    background-color: #0A2463;
    color: #fff;
    padding: 60px 0;
}

.page-bn-c__features-section .page-bn-c__section-title {
    color: #FFD700;
}

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

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

.page-bn-c__feature-icon {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-bn-c__feature-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-bn-c__feature-item p {
    font-size: 1em;
    color: #e0e0e0;
}

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

.page-bn-c__promo-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px auto;
    max-width: 800px;
}

.page-bn-c__promo-list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 1.05em;
    color: #444;
}

.page-bn-c__promotions-section p {
    text-align: center;
    font-size: 1.05em;
    color: #555;
    margin-bottom: 20px;
}

/* Responsible Gaming Section */
.page-bn-c__responsible-gaming-section {
    padding: 60px 0;
    background-color: #fff;
}

.page-bn-c__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-bn-c__responsible-gaming-section ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-bn-c__responsible-gaming-section ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #444;
}

.page-bn-c__responsible-gaming-section ul li strong {
    color: #0A2463;
}

.page-bn-c__responsible-gaming-section ul li::before {
    content: '\2713'; /* Checkmark */
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* FAQ Section */
.page-bn-c__faq-section {
    padding: 60px 0;
    background-color: #f0f4f7;
}

.page-bn-c__faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-bn-c__faq-question {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-bn-c__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-bn-c__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-bn-c__faq-answer {
    font-size: 1.05em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding: 0 10px;
}

.page-bn-c__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    padding: 10px;
}

.page-bn-c__faq-answer a {
    color: #0A2463;
    text-decoration: underline;
}

.page-bn-c__faq-answer a:hover {
    color: #FFD700;
}

/* CTA Section */
.page-bn-c__cta-section {
    background: linear-gradient(45deg, #0A2463, #1a3a7c);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-bn-c__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-bn-c__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-bn-c__hero-title {
        font-size: 2.8em;
    }
    .page-bn-c__section-title {
        font-size: 2em;
    }
    .page-bn-c__content-wrapper {
        flex-direction: column;
    }
    .page-bn-c__content-wrapper--reverse {
        flex-direction: column-reverse;
    }
    .page-bn-c__game-card, .page-bn-c__strategy-item, .page-bn-c__feature-item {
        padding: 25px;
    }
    .page-bn-c__card-image, .page-bn-c__strategy-image {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .page-bn-c__hero-title {
        font-size: 2.2em;
    }
    .page-bn-c__hero-description, .page-bn-c__section-description, .page-bn-c__cta-description {
        font-size: 1em;
    }
    .page-bn-c__hero-buttons, .page-bn-c__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-bn-c__btn {
        width: 80%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .page-bn-c__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
        padding-top: 40px;
    }
    .page-bn-c__game-card, .page-bn-c__strategy-item, .page-bn-c__feature-item {
        padding: 20px;
    }
    .page-bn-c__card-title, .page-bn-c__strategy-title, .page-bn-c__feature-title {
        font-size: 1.4em;
    }
    .page-bn-c__faq-question {
        font-size: 1.2em;
    }
    .page-bn-c__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 480px) {
    .page-bn-c__hero-title {
        font-size: 1.8em;
    }
    .page-bn-c__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-bn-c__section-title {
        font-size: 1.6em;
    }
    .page-bn-c__cta-title {
        font-size: 1.8em;
    }
}