/* style/bn-c.css */
.page-bn-c {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    line-height: 1.6;
    background-color: #0A192F; /* Main background color */
}

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

.page-bn-c .section-title {
    font-size: 2.8em;
    color: #FFD700; /* Accent color for titles */
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.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-subtitle {
    font-size: 1.2em;
    color: #f5e6d0;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-bn-c a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-bn-c a:hover {
    color: #e6c200;
}

.page-bn-c .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-bn-c .btn-primary {
    background-color: #FFD700; /* Gold */
    color: #0A192F; /* Navy Blue */
    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: #0A192F;
    transform: translateY(-2px);
}

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

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

/* Hero Section */
.page-bn-c .hero-section {
    background: linear-gradient(135deg, #0A192F, #1A305A);
    padding: 100px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-bn-c .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:banca,underwater,ocean_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

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

.page-bn-c .hero-title {
    font-size: 3.8em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.page-bn-c .hero-description {
    font-size: 1.4em;
    color: #f5e6d0;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-bn-c .hero-actions .btn {
    margin: 0 10px;
}

.page-bn-c .hero-image-wrapper {
    margin-top: 50px;
}

.page-bn-c .hero-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* About Game Section */
.page-bn-c .about-game-section {
    padding: 80px 0;
    background-color: #0A192F;
}

.page-bn-c .content-grid {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-bn-c .content-grid.reverse-grid {
    flex-direction: row-reverse;
}

.page-bn-c .text-content,
.page-bn-c .image-content {
    flex: 1;
}

.page-bn-c .text-content p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-bn-c .image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Game Versions Section */
.page-bn-c .game-versions-section {
    padding: 80px 0;
    background-color: #1A2F4A;
}

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

.page-bn-c .game-card {
    background-color: #0A192F;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    padding-bottom: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-bn-c .card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-bn-c .card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    padding: 0 15px;
}

.page-bn-c .card-description {
    font-size: 1em;
    color: #e0e0e0;
    padding: 0 20px;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* How To Play Section */
.page-bn-c .how-to-play-section {
    padding: 80px 0;
    background-color: #0A192F;
}

.page-bn-c .step-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.page-bn-c .step-list li {
    background-color: #1A2F4A;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 90px;
}

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

.page-bn-c .step-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-bn-c .step-list p {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 15px;
}

/* Tips Strategy Section */
.page-bn-c .tips-strategy-section {
    padding: 80px 0;
    background-color: #1A2F4A;
}

.page-bn-c .bullet-list {
    list-style: none;
    padding: 0;
}

.page-bn-c .bullet-list li {
    background-color: #0A192F;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-bn-c .bullet-list li strong {
    color: #FFD700;
}

/* Advantages Section */
.page-bn-c .advantages-section {
    padding: 80px 0;
    background-color: #0A192F;
}

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

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

.page-bn-c .feature-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

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

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

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

/* Download App Section */
.page-bn-c .download-app-section {
    padding: 80px 0;
    background-color: #1A2F4A;
}

.page-bn-c .download-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-bn-c .download-step-item {
    background-color: #0A192F;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-bn-c .download-step-item .step-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

/* Promotion Section */
.page-bn-c .promotion-section {
    padding: 80px 0;
    background-color: #0A192F;
}

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

.page-bn-c .promo-card {
    background-color: #1A2F4A;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    padding-bottom: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-bn-c .promo-card .card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 20px;
}

/* FAQ Section */
.page-bn-c .faq-section {
    padding: 80px 0;
    background-color: #1A2F4A;
}

.page-bn-c .faq-item {
    background-color: #0A192F;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-bn-c .faq-question {
    font-size: 1.5em;
    color: #FFD700;
    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;
    transition: transform 0.3s ease;
}

.page-bn-c .faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

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

.page-bn-c .faq-item.active .faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding: 10px 10px 0;
}

/* Final CTA Section */
.page-bn-c .final-cta-section {
    background-color: #0A192F;
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-bn-c .hero-title {
        font-size: 3em;
    }
    .page-bn-c .hero-description {
        font-size: 1.2em;
    }
    .page-bn-c .section-title {
        font-size: 2.2em;
    }
    .page-bn-c .content-grid {
        flex-direction: column;
    }
    .page-bn-c .content-grid.reverse-grid {
        flex-direction: column;
    }
    .page-bn-c .image-content {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-bn-c .hero-title {
        font-size: 2.5em;
    }
    .page-bn-c .hero-description {
        font-size: 1.1em;
    }
    .page-bn-c .hero-actions .btn {
        margin: 10px 0;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    .page-bn-c .section-title {
        font-size: 1.8em;
    }
    .page-bn-c .section-subtitle {
        font-size: 1em;
    }
    .page-bn-c .step-list li {
        padding-left: 30px;
    }
    .page-bn-c .step-list li::before {
        left: auto;
        right: 15px;
        top: 15px;
        font-size: 1.2em;
        width: 30px;
        height: 30px;
    }
    .page-bn-c .feature-item, .page-bn-c .download-step-item, .page-bn-c .game-card, .page-bn-c .promo-card {
        padding: 20px;
    }
    .page-bn-c .feature-title, .page-bn-c .card-title, .page-bn-c .step-title {
        font-size: 1.3em;
    }
    .page-bn-c .faq-question {
        font-size: 1.3em;
    }
}