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

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

.page-bn-c .hero-section {
    background: linear-gradient(135deg, #0A246A 0%, #3a5c9e 100%); /* Adjusted gradient for better contrast */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-bn-c .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-bn-c .hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for highlight */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-bn-c .hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-bn-c .hero-actions .btn {
    margin: 10px;
    min-width: 180px;
}

.page-bn-c .hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
    overflow: hidden;
}

.page-bn-c .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-bn-c .section-title {
    font-size: 2.5em;
    color: #0A246A;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-bn-c .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-bn-c .section-text {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

.page-bn-c .section-intro, .page-bn-c .section-games, .page-bn-c .section-features, .page-bn-c .section-guide, .page-bn-c .section-promotions, .page-bn-c .section-why-choose, .page-bn-c .section-faq, .page-bn-c .section-cta {
    padding: 60px 0;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.page-bn-c .section-intro {
    background-color: #ffffff;
}

.page-bn-c .highlight {
    color: #0A246A;
    font-weight: bold;
}

.page-bn-c .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.page-bn-c .btn-primary {
    background-color: #FFD700;
    color: #0A246A;
}

.page-bn-c .btn-primary:hover {
    background-color: #e6c200;
}

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

.page-bn-c .btn-secondary:hover {
    background-color: #FFD700;
    color: #0A246A;
}

.page-bn-c .btn-small {
    padding: 8px 18px;
    font-size: 0.9em;
}

.page-bn-c .btn-large {
    padding: 15px 35px;
    font-size: 1.1em;
}

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

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

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

.page-bn-c .game-image, .page-bn-c .promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.page-bn-c .game-title, .page-bn-c .promo-title {
    font-size: 1.5em;
    color: #0A246A;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-bn-c .game-description, .page-bn-c .promo-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
    padding: 0 15px;
}

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

.page-bn-c .feature-item:hover {
    transform: translateY(-5px);
}

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

.page-bn-c .feature-title {
    font-size: 1.4em;
    color: #0A246A;
    margin-bottom: 10px;
}

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

.page-bn-c .guide-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto;
}

.page-bn-c .guide-list li {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    padding: 25px 30px;
    position: relative;
    text-align: left;
}

.page-bn-c .guide-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #0A246A;
    color: #FFD700;
    border-radius: 10px 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.page-bn-c .guide-step-title {
    font-size: 1.3em;
    color: #0A246A;
    margin-bottom: 10px;
    padding-left: 55px; /* Adjust for counter */
}

.page-bn-c .guide-step-description {
    color: #555;
    font-size: 1em;
    padding-left: 55px; /* Adjust for counter */
    margin-bottom: 15px;
}

.page-bn-c .guide-list .btn-small {
    margin-top: 10px;
    margin-left: 55px;
}

.page-bn-c .why-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto;
}

.page-bn-c .why-list li {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: #444;
}

.page-bn-c .highlight-icon {
    color: #FFD700;
    font-size: 1.5em;
    margin-right: 15px;
}

.page-bn-c .list-strong {
    color: #0A246A;
}

.page-bn-c .faq-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    padding: 25px 30px;
    text-align: left;
}

.page-bn-c .faq-question {
    font-size: 1.3em;
    color: #0A246A;
    margin-bottom: 10px;
}

.page-bn-c .faq-answer {
    color: #555;
    font-size: 1em;
    margin-bottom: 15px;
}

.page-bn-c .faq-item .btn-small {
    margin-top: 10px;
}

.page-bn-c .section-cta {
    background-color: #0A246A;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-bn-c .section-cta .section-title {
    color: #FFD700;
}

.page-bn-c .section-cta .section-text {
    color: #e0e0e0;
}

.page-bn-c .text-center {
    text-align: center;
}

.page-bn-c .mt-5 {
    margin-top: 50px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-bn-c .hero-title {
        font-size: 2.5em;
    }

    .page-bn-c .hero-description {
        font-size: 1em;
    }

    .page-bn-c .section-title {
        font-size: 2em;
    }

    .page-bn-c .game-grid, .page-bn-c .features-grid, .page-bn-c .promo-grid {
        grid-template-columns: 1fr;
    }

    .page-bn-c .guide-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }

    .page-bn-c .guide-step-title, .page-bn-c .guide-step-description, .page-bn-c .guide-list .btn-small {
        padding-left: 50px;
    }
}

@media (max-width: 480px) {
    .page-bn-c .hero-title {
        font-size: 2em;
    }

    .page-bn-c .hero-actions .btn {
        min-width: unset;
        width: 100%;
        margin-bottom: 15px;
    }

    .page-bn-c .section-title {
        font-size: 1.8em;
    }

    .page-bn-c .guide-list li {
        padding: 20px 25px;
    }
}