/* style/bn-c.css */
.page-bn-c {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0;
    background-color: #1A2B3C;
    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.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-bn-c__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

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

.page-bn-c__btn--primary:hover {
    background-color: #e6c200;
    color: #0d1a26;
    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: #1A2B3C;
    transform: translateY(-2px);
}

.page-bn-c__btn--small {
    padding: 10px 20px;
    font-size: 0.95em;
}

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

/* Hero Section */
.page-bn-c__hero-section {
    background: linear-gradient(135deg, #1A2B3C 0%, #0d1a26 100%);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap-reverse;
    position: relative;
    overflow: hidden;
}

.page-bn-c__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,215,0,0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatEffect 10s ease-in-out infinite alternate;
}

.page-bn-c__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatEffect 12s ease-in-out infinite alternate-reverse;
}

@keyframes floatEffect {
    0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    50% { transform: translate(10px, 10px) scale(1.05); opacity: 1; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
}

.page-bn-c__hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    text-align: left;
    padding: 20px;
}

.page-bn-c__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-bn-c__hero-description {
    font-size: 1.2em;
    color: #E0E0E0;
    margin-bottom: 30px;
}

.page-bn-c__hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-bn-c__hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-bn-c__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: pulseEffect 3s ease-in-out infinite alternate;
}

@keyframes pulseEffect {
    0% { transform: scale(1); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
    100% { transform: scale(1.02); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7); }
}

/* Intro Section */
.page-bn-c__intro-section {
    padding: 60px 0;
    background-color: #1A2B3C;
}

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

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

.page-bn-c__feature-item:hover {
    transform: translateY(-10px);
    background-color: #3a4b5c;
}

.page-bn-c__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    display: inline-block;
}

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

.page-bn-c__feature-text {
    color: #E0E0E0;
    font-size: 1em;
}

/* Game Types Section */
.page-bn-c__game-types-section {
    padding: 60px 0;
    background-color: #0d1a26;
}

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

.page-bn-c__game-card {
    background-color: #1A2B3C;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-bn-c__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-bn-c__game-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #FFD700;
}

.page-bn-c__game-card-title {
    font-size: 1.5em;
    color: #FFD700;
    padding: 20px 20px 10px;
    font-weight: bold;
}

.page-bn-c__game-card-text {
    color: #E0E0E0;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-bn-c__game-card .page-bn-c__btn {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
}

/* Tips Section */
.page-bn-c__tips-section {
    padding: 60px 0;
    background-color: #1A2B3C;
}

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

.page-bn-c__tips-list li {
    background-color: #2a3b4c;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.page-bn-c__tip-number {
    font-size: 1.8em;
    color: #FFD700;
    font-weight: bold;
    margin-right: 15px;
    line-height: 1;
    flex-shrink: 0;
}

.page-bn-c__tips-list strong {
    color: #FFD700;
}

/* CTA Section */
.page-bn-c__cta-section {
    padding: 80px 0;
    background: linear-gradient(90deg, #FFD700, #e6c200);
    color: #1A2B3C;
}

.page-bn-c__cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    text-align: left;
}

.page-bn-c__cta-image {
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-bn-c__cta-text-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.page-bn-c__cta-text-wrapper .page-bn-c__section-title {
    color: #1A2B3C;
    text-align: left;
    text-shadow: none;
}

.page-bn-c__cta-text-wrapper p {
    color: #333;
    font-size: 1.1em;
    margin-bottom: 30px;
    text-align: left;
}

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

.page-bn-c__cta-buttons .page-bn-c__btn--primary {
    background-color: #1A2B3C;
    color: #FFD700;
    border-color: #1A2B3C;
}

.page-bn-c__cta-buttons .page-bn-c__btn--primary:hover {
    background-color: #334455;
    color: #FFD700;
    border-color: #334455;
}

.page-bn-c__cta-buttons .page-bn-c__btn--secondary {
    background-color: transparent;
    color: #1A2B3C;
    border-color: #1A2B3C;
}

.page-bn-c__cta-buttons .page-bn-c__btn--secondary:hover {
    background-color: #1A2B3C;
    color: #FFD700;
}

/* Why Choose Section */
.page-bn-c__why-choose-section {
    padding: 60px 0;
    background-color: #0d1a26;
}

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

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

.page-bn-c__why-item:hover {
    transform: translateY(-10px);
    background-color: #2a3b4c;
}

.page-bn-c__why-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: inline-block;
}

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

.page-bn-c__why-text {
    color: #E0E0E0;
    font-size: 1em;
}

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

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

.page-bn-c__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-bn-c__faq-question::after {
    content: '+';
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-bn-c__faq-question.active::after {
    transform: rotate(45deg);
}

.page-bn-c__faq-answer {
    color: #E0E0E0;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding-top: 0;
}

.page-bn-c__faq-answer.open {
    max-height: 200px; /* Adjust based on content */
    padding-top: 10px;
}

/* Final CTA Section */
.page-bn-c__final-cta-section {
    padding: 80px 0;
    background: linear-gradient(45deg, #1A2B3C, #0d1a26);
    text-align: center;
}

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

.page-bn-c__final-cta-section .page-bn-c__section-description {
    color: #E0E0E0;
    margin-bottom: 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-bn-c__hero-section {
        flex-direction: column;
        text-align: center;
    }
    .page-bn-c__hero-content {
        text-align: center;
    }
    .page-bn-c__hero-title {
        font-size: 2.8em;
    }
    .page-bn-c__hero-actions {
        justify-content: center;
    }
    .page-bn-c__cta-content {
        flex-direction: column;
        text-align: center;
    }
    .page-bn-c__cta-text-wrapper .page-bn-c__section-title,
    .page-bn-c__cta-text-wrapper p {
        text-align: center;
    }
    .page-bn-c__cta-buttons {
        justify-content: center;
    }
    .page-bn-c__section-title {
        font-size: 2em;
    }
    .page-bn-c__hero-description,
    .page-bn-c__section-description,
    .page-bn-c__feature-text,
    .page-bn-c__game-card-text,
    .page-bn-c__why-text,
    .page-bn-c__faq-answer {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-bn-c__hero-title {
        font-size: 2.2em;
    }
    .page-bn-c__section-title {
        font-size: 1.8em;
    }
    .page-bn-c__hero-description {
        font-size: 1em;
    }
    .page-bn-c__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-bn-c__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-bn-c__features-grid,
    .page-bn-c__game-cards-grid,
    .page-bn-c__why-grid {
        grid-template-columns: 1fr;
    }
    .page-bn-c__feature-item,
    .page-bn-c__game-card,
    .page-bn-c__why-item {
        padding: 25px;
    }
    .page-bn-c__game-card .page-bn-c__btn {
        width: auto;
        margin: 0 auto 20px auto;
    }
    .page-bn-c__hero-image-wrapper,
    .page-bn-c__cta-image {
        order: -1; /* Move image above text on smaller screens */
    }
}

@media (max-width: 480px) {
    .page-bn-c__hero-title {
        font-size: 1.8em;
    }
    .page-bn-c__section-title {
        font-size: 1.5em;
    }
    .page-bn-c__hero-actions,
    .page-bn-c__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-bn-c__btn {
        width: 80%;
        max-width: 250px;
    }
    .page-bn-c__tips-list li {
        flex-direction: column;
        text-align: center;
    }
    .page-bn-c__tip-number {
        margin-right: 0;
        margin-bottom: 10px;
    }
}