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

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

.page-bn-c__section {
    padding: 60px 0;
    text-align: center;
}

.page-bn-c__section--dark {
    background-color: #222222;
}

.page-bn-c__section-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

/* Hero Section */
.page-bn-c__hero-section {
    background: linear-gradient(135deg, #8B0000, #4a0000);
    padding: 100px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-bn-c__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:hero:fish_shooting,game,online_casino,789bet,underwater_theme]');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.page-bn-c__hero-section .page-bn-c__container {
    position: relative;
    z-index: 1;
}

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

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

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

.page-bn-c__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-bn-c__btn--primary {
    background-color: #FFD700;
    color: #8B0000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-bn-c__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-bn-c__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-bn-c__btn--secondary:hover {
    background-color: #FFD700;
    color: #8B0000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Intro Section */
.page-bn-c__content-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.page-bn-c__content-grid .page-bn-c__text-content {
    flex: 1;
}

.page-bn-c__content-grid .page-bn-c__text-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #cccccc;
}

.page-bn-c__content-grid .page-bn-c__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Features Section */
.page-bn-c__features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-bn-c__feature-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-bn-c__feature-item:hover {
    transform: translateY(-5px);
    background-color: #333333;
}

.page-bn-c__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-bn-c__feature-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 10px;
}

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

/* Guide Section */
.page-bn-c__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-bn-c__step-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    position: relative;
    padding-top: 60px;
}

.page-bn-c__step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: #FFD700;
    color: #8B0000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

.page-bn-c__step-item h3 {
    color: #FFD700;
    font-size: 1.4em;
    margin-bottom: 10px;
}

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

.page-bn-c__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
    margin-top: 15px;
}

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

.page-bn-c__strategy-card {
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    text-align: left;
    border: 1px solid #333;
    transition: border-color 0.3s ease;
}

.page-bn-c__strategy-card:hover {
    border-color: #FFD700;
}

.page-bn-c__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-bn-c__strategy-card h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-bottom: 10px;
}

.page-bn-c__strategy-card p {
    color: #cccccc;
    font-size: 1em;
}

/* Promo Section */
.page-bn-c__promo-intro {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 20px;
}

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

.page-bn-c__promo-list li {
    background-color: #2a2a2a;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #e0e0e0;
    border-left: 5px solid #FFD700;
}

.page-bn-c__promo-highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-bn-c__promo-action {
    margin-top: 30px;
}

/* Why Choose Section */
.page-bn-c__why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-bn-c__why-choose-item {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border-bottom: 4px solid #8B0000;
    transition: transform 0.3s ease;
}

.page-bn-c__why-choose-item:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

.page-bn-c__why-choose-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px #8B0000);
}

.page-bn-c__why-choose-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-bn-c__why-choose-item p {
    color: #cccccc;
    font-size: 1em;
}

/* FAQ Section */
.page-bn-c__faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.page-bn-c__accordion-item {
    margin-bottom: 15px;
    border: 1px solid #333333;
    border-radius: 8px;
    overflow: hidden;
}

.page-bn-c__accordion-header {
    background-color: #2a2a2a;
    color: #FFD700;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    position: relative;
    padding-right: 50px;
}

.page-bn-c__accordion-header:hover {
    background-color: #333333;
}

.page-bn-c__accordion-header::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

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

.page-bn-c__accordion-content {
    padding: 0 25px;
    background-color: #1f1f1f;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-bn-c__accordion-content p {
    padding: 15px 0;
    color: #cccccc;
    font-size: 1em;
}

.page-bn-c__accordion-content.open {
    max-height: 200px; /* Adjust based on content */
    padding-top: 15px;
    padding-bottom: 15px;
}

/* Call to Action Section */
.page-bn-c__cta-section {
    background-color: #8B0000;
    padding: 80px 0;
}

.page-bn-c__cta-section .page-bn-c__section-title {
    color: #FFD700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-bn-c__cta-description {
    font-size: 1.3em;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto 40px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-bn-c__hero-title {
        font-size: 3em;
    }

    .page-bn-c__section-title {
        font-size: 2.2em;
    }

    .page-bn-c__content-grid {
        flex-direction: column;
    }

    .page-bn-c__features-list, .page-bn-c__guide-steps, .page-bn-c__strategy-grid, .page-bn-c__why-choose-grid {
        grid-template-columns: 1fr;
    }
}

@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, .page-bn-c__cta-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-bn-c__btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }

    .page-bn-c__section {
        padding: 40px 0;
    }

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

    .page-bn-c__feature-icon {
        width: 50px;
        height: 50px;
    }
}

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

    .page-bn-c__section-title {
        font-size: 1.5em;
    }

    .page-bn-c__btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-bn-c__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
}