/* style/bn-c.css */
.page-bn-c {
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    background-color: #1a0033; /* Darker variant of primary color for overall background */
    line-height: 1.6;
}

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

.page-bn-c-section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: bold;
    padding-top: 40px;
}

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

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

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

.page-bn-c-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    margin: 10px;
    cursor: pointer;
}

.page-bn-c-btn-primary {
    background-color: #FFD700; /* Gold */
    color: #330066; /* Dark Purple */
    border: 2px solid #FFD700;
}

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

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

.page-bn-c-btn-secondary:hover {
    background-color: #FFD700;
    color: #330066;
    transform: translateY(-2px);
}

.page-bn-c-btn-large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-bn-c-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-bn-c-link:hover {
    text-decoration: underline;
}

/* Hero Section */
.page-bn-c-hero {
    background: linear-gradient(135deg, #330066, #5a00b3); /* Primary color gradient */
    padding: 100px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-bn-c-hero-image-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

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

.page-bn-c-hero .page-bn-c-container {
    position: relative;
    z-index: 1;
}

.page-bn-c-hero-title {
    font-size: 4em;
    color: #FFD700; /* Gold */
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-bn-c-hero-description {
    font-size: 1.4em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #f0f0f0;
}

.page-bn-c-hero-actions {
    margin-top: 30px;
}

/* Intro Game Section */
.page-bn-c-intro-game {
    padding: 80px 0;
    background-color: #1a0033;
}

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

.page-bn-c-feature-item {
    background-color: #330066; /* Primary color */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.page-bn-c-feature-item h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-bn-c-feature-item p {
    color: #e0e0e0;
}

.page-bn-c-feature-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

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

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

.page-bn-c-steps-list li {
    background-color: #330066;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-left: 80px;
}

.page-bn-c-steps-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFD700;
    color: #330066;
    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-steps-list h3 {
    color: #FFD700;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.page-bn-c-steps-list p {
    color: #e0e0e0;
}

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

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

.page-bn-c-tips-list li {
    background-color: #330066;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-bn-c-tips-list p {
    color: #e0e0e0;
}

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

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

.page-bn-c-advantage-item {
    background-color: #330066;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.page-bn-c-advantage-item h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-bn-c-advantage-item p {
    color: #e0e0e0;
}

.page-bn-c-advantage-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

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

.page-bn-c-cta-bottom p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

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

.page-bn-c-accordion {
    margin-top: 40px;
}

.page-bn-c-accordion-item {
    background-color: #330066;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-bn-c-accordion-header {
    background-color: #4d0099; /* Slightly lighter primary for header */
    color: #FFD700;
    padding: 20px 30px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.4em;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-bn-c-accordion-header:hover {
    background-color: #5a00b3;
}

.page-bn-c-accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-bn-c-accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-bn-c-accordion-content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    color: #e0e0e0;
}

.page-bn-c-accordion-content p {
    padding-bottom: 20px;
    margin-top: 10px;
}

/* Final Call to Action Section */
.page-bn-c-call-to-action {
    padding: 80px 0;
    background-color: #0d0020;
    text-align: center;
}

.page-bn-c-call-to-action p {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

/* 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-features-grid, .page-bn-c-advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-bn-c-hero {
        padding: 80px 0 40px;
    }
    .page-bn-c-hero-title {
        font-size: 2.5em;
    }
    .page-bn-c-hero-description {
        font-size: 1.1em;
    }
    .page-bn-c-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-bn-c-section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-bn-c-steps-list li {
        padding-left: 60px;
    }
    .page-bn-c-steps-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.2em;
        left: 15px;
    }
    .page-bn-c-steps-list h3 {
        font-size: 1.5em;
    }
    .page-bn-c-accordion-header {
        font-size: 1.2em;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-bn-c-hero-title {
        font-size: 2em;
    }
    .page-bn-c-hero-description {
        font-size: 1em;
    }
    .page-bn-c-hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-bn-c-btn {
        width: 80%;
        margin: 10px 0;
    }
    .page-bn-c-section-title {
        font-size: 1.5em;
    }
    .page-bn-c-feature-item, .page-bn-c-advantage-item {
        padding: 20px;
    }
    .page-bn-c-feature-item h3, .page-bn-c-advantage-item h3 {
        font-size: 1.4em;
    }
    .page-bn-c-accordion-header {
        font-size: 1.1em;
        padding: 12px 15px;
    }
    .page-bn-c-accordion-content p {
        font-size: 0.95em;
        padding-bottom: 15px;
    }
}