/* style/bn-c.css */
.page-bn-c {
    font-family: 'Arial', sans-serif;
    color: #e5dfd3; /* Light text on dark background for readability */
    background-color: #1A202C; /* Auxiliary color as main background */
}

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

.page-bn-c__hero-section {
    background: linear-gradient(135deg, #1A202C 0%, #3a414f 100%); /* Darker gradient */
    color: #FFD700; /* Gold text for hero */
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-bn-c__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #FFD700; /* Ensure gold color for title */
}

.page-bn-c__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e5dfd3; /* Light text for description */
}

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

.page-bn-c__btn--primary {
    background-color: #FFD700; /* Gold primary button */
    color: #1A202C; /* Dark text on gold */
}

.page-bn-c__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-bn-c__btn--secondary {
    background-color: #1A202C; /* Dark secondary button */
    color: #FFD700; /* Gold text on dark */
    border: 2px solid #FFD700;
}

.page-bn-c__btn--secondary:hover {
    background-color: #3a414f; /* Slightly lighter dark on hover */
    transform: translateY(-3px);
}

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

.page-bn-c__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    position: relative;
}

.page-bn-c__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-bn-c__text-content {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #e5dfd3; /* Light text for content */
}

.page-bn-c__text-content--center {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-bn-c__introduction-section, 
.page-bn-c__gameplay-section, 
.page-bn-c__strategy-section, 
.page-bn-c__promotions-section, 
.page-bn-c__why-choose-section {
    padding: 60px 0;
    background-color: #262c38; /* Slightly lighter dark background for sections */
    margin-bottom: 20px;
}

.page-bn-c__introduction-section {
    background-color: #1A202C;
}

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

.page-bn-c__feature-item, .page-bn-c__promo-card {
    background-color: #1A202C; /* Dark background for cards */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3a414f;
}

.page-bn-c__feature-item:hover, .page-bn-c__promo-card:hover, .page-bn-c__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-bn-c__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2); /* Allowed for general icon visibility, not color change */
}

.page-bn-c__feature-title, .page-bn-c__promo-title, .page-bn-c__game-title, .page-bn-c__benefit-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold for titles */
    margin-bottom: 15px;
}

.page-bn-c__feature-description, .page-bn-c__promo-description, .page-bn-c__game-description, .page-bn-c__benefit-description {
    font-size: 1em;
    line-height: 1.6;
    color: #e5dfd3; /* Light text for descriptions */
}

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

.page-bn-c__game-card {
    background-color: #1A202C;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding-bottom: 20px;
    border: 1px solid #3a414f;
}

.page-bn-c__game-image, .page-bn-c__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
}

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

.page-bn-c__strategy-list li {
    background-color: #1A202C;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #FFD700;
    transition: background-color 0.3s ease;
}

.page-bn-c__strategy-list li:hover {
    background-color: #262c38;
}

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

.page-bn-c__strategy-description {
    font-size: 1em;
    line-height: 1.6;
    color: #e5dfd3;
}

.page-bn-c__text-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-bn-c__text-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

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

.page-bn-c__benefits-list li {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3a414f;
}

.page-bn-c__benefits-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-bn-c__benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: brightness(1.2); /* Allowed for general icon visibility */
}

.page-bn-c__cta-section {
    background: linear-gradient(135deg, #FFD700 0%, #e6c200 100%); /* Gold gradient for CTA */
    padding: 80px 20px;
    text-align: center;
    color: #1A202C; /* Dark text on gold CTA */
    border-top: 5px solid #1A202C;
}

.page-bn-c__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #1A202C;
}

.page-bn-c__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #3a414f; /* Darker text for description */
}

.page-bn-c__cta-buttons .page-bn-c__btn--primary {
    background-color: #1A202C; /* Dark primary button on gold background */
    color: #FFD700; /* Gold text */
    border: 2px solid #1A202C;
}

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

.page-bn-c__cta-buttons .page-bn-c__btn--secondary {
    background-color: transparent;
    color: #1A202C; /* Dark text on gold background */
    border: 2px solid #1A202C;
}

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

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

.page-bn-c__cta-section .highlight {
    color: #1A202C;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-bn-c__hero-title {
        font-size: 2.5em;
    }
    .page-bn-c__hero-description {
        font-size: 1em;
    }
    .page-bn-c__section-title {
        font-size: 2em;
    }
    .page-bn-c__feature-grid, .page-bn-c__game-showcase, .page-bn-c__promo-grid, .page-bn-c__benefits-list {
        grid-template-columns: 1fr;
    }
    .page-bn-c__cta-title {
        font-size: 2em;
    }
    .page-bn-c__cta-description {
        font-size: 1em;
    }
    .page-bn-c__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-bn-c__hero-title {
        font-size: 2em;
    }
    .page-bn-c__section-title {
        font-size: 1.8em;
    }
    .page-bn-c__cta-title {
        font-size: 1.8em;
    }
    .page-bn-c__btn {
        display: block;
        width: 90%;
        margin: 10px auto;
    }
}