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

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

.page-bn-c__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000080;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #000080;
}

.page-bn-c__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-bn-c__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #000080; /* Text color for title on light background */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-bn-c__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #333; /* Text color for description on light background */
}

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

.page-bn-c__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    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: #000080;
    color: #FFD700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-bn-c__btn--primary:hover {
    background-color: #000066;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-bn-c__btn--secondary:hover {
    background-color: #FFC400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

.page-bn-c__btn--xl {
    padding: 20px 40px;
    font-size: 1.5em;
}

.page-bn-c__hero-image {
    margin-top: 40px;
    width: 100%;
    max-width: 1200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-bn-c__hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.page-bn-c__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-bn-c__section-title {
    font-size: 2.5em;
    color: #000080;
    margin-bottom: 20px;
    text-align: center;
}

.page-bn-c__section-intro {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-bn-c__card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #FFD700;
}

.page-bn-c__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-bn-c__card-title {
    font-size: 1.5em;
    color: #000080;
    margin-bottom: 15px;
}

.page-bn-c__card p {
    color: #666;
    font-size: 1em;
}

.page-bn-c__card a {
    color: #000080;
    text-decoration: underline;
}

.page-bn-c__image-wrapper {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-bn-c__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.page-bn-c__how-to-play .page-bn-c__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-bn-c__step-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    border-left: 5px solid #000080;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-bn-c__step-title {
    font-size: 1.4em;
    color: #000080;
    margin-bottom: 15px;
}

.page-bn-c__step-card p {
    color: #666;
    margin-bottom: 20px;
}

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

.page-bn-c__game-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-bn-c__game-card:hover {
    transform: translateY(-5px);
}

.page-bn-c__game-card img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-bn-c__game-card-title {
    font-size: 1.3em;
    color: #000080;
    margin: 20px 15px 10px;
}

.page-bn-c__game-card p {
    color: #666;
    padding: 0 15px 20px;
    font-size: 0.95em;
}

.page-bn-c__grid--two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    text-align: left;
}

.page-bn-c__strategy-item {
    background-color: #f0f8ff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.page-bn-c__strategy-title {
    font-size: 1.4em;
    color: #000080;
    margin-bottom: 15px;
}

.page-bn-c__strategy-item ul {
    list-style: none;
    padding: 0;
}

.page-bn-c__strategy-item li {
    margin-bottom: 10px;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.page-bn-c__strategy-item li::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.page-bn-c__strategy-item strong {
    color: #000080;
}

.page-bn-c__promotions .page-bn-c__promo-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.page-bn-c__promo-list li {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-right: 5px solid #FFD700;
}

.page-bn-c__promo-item-title {
    font-size: 1.4em;
    color: #000080;
    margin-bottom: 15px;
}

.page-bn-c__promo-list p {
    color: #666;
}

.page-bn-c__promo-cta {
    margin-top: 40px;
}

.page-bn-c__faq-container {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.page-bn-c__faq-item {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    border-left: 5px solid #000080;
}

.page-bn-c__faq-question {
    font-size: 1.25em;
    color: #000080;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-bn-c__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #FFD700;
    font-weight: bold;
}

.page-bn-c__faq-answer {
    color: #666;
    display: none;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 15px;
}

.page-bn-c__faq-item.active .page-bn-c__faq-answer {
    display: block;
}

.page-bn-c__faq-item.active .page-bn-c__faq-question::after {
    content: '-';
}

.page-bn-c__faq-answer a {
    color: #000080;
    text-decoration: underline;
}

.page-bn-c__cta-final {
    background-color: #000080;
    color: #f8f8f8;
    padding: 80px 20px;
    border-top: 5px solid #FFD700;
}

.page-bn-c__cta-final .page-bn-c__section-title {
    color: #FFD700;
}

.page-bn-c__cta-final .page-bn-c__section-intro {
    color: #fff;
}

.page-bn-c__cta-final .page-bn-c__btn {
    background-color: #FFD700;
    color: #000080;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-bn-c__cta-final .page-bn-c__btn:hover {
    background-color: #FFC400;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-bn-c__hero-title {
        font-size: 2.8em;
    }
    .page-bn-c__section-title {
        font-size: 2em;
    }
    .page-bn-c__grid--two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-bn-c__hero {
        padding: 40px 15px;
    }
    .page-bn-c__hero-title {
        font-size: 2.2em;
    }
    .page-bn-c__hero-description {
        font-size: 1em;
    }
    .page-bn-c__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-bn-c__btn {
        width: 100%;
        max-width: 300px;
    }
    .page-bn-c__section {
        padding: 40px 15px;
    }
    .page-bn-c__section-title {
        font-size: 1.8em;
    }
    .page-bn-c__grid, .page-bn-c__steps-grid, .page-bn-c__game-cards-grid, .page-bn-c__promo-list {
        grid-template-columns: 1fr;
    }
}

@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__btn--xl {
        padding: 15px 25px;
        font-size: 1.2em;
    }
    .page-bn-c__card, .page-bn-c__step-card, .page-bn-c__game-card, .page-bn-c__strategy-item, .page-bn-c__promo-list li, .page-bn-c__faq-item {
        padding: 20px;
    }
    .page-bn-c__game-card img {
        height: 180px;
    }
}