/* style/bn-c.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #8B0000; /* Dark Red */
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-dark: #1a1a1a;
    --background-light: #f5f5f5;
    --border-color: #e0e0e0;
}

.page-bn-c {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

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

.page-bn-c h1, .page-bn-c h2, .page-bn-c h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

.page-bn-c h1 {
    font-size: 2.8em;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-bn-c h2 {
    font-size: 2.2em;
    margin-top: 40px;
    color: var(--secondary-color);
}

.page-bn-c h3 {
    font-size: 1.6em;
    color: var(--secondary-color);
}

.page-bn-c p {
    margin-bottom: 15px;
    text-align: justify;
}

.page-bn-c a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-bn-c a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

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

/* Hero Section */
.page-bn-c .hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #a00000 50%, var(--secondary-color) 100%);
    color: var(--text-light);
}

.page-bn-c .hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-bn-c .hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-bn-c .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-bn-c .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

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

.page-bn-c .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-bn-c .cta-button:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.page-bn-c .cta-button-small {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.page-bn-c .cta-button-small:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

/* Intro Section */
.page-bn-c .section-intro {
    padding: 60px 0;
    background-color: var(--background-light);
}

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

.page-bn-c .card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-bn-c .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-bn-c .card img {
    width: 100%;
    max-width: 400px; /* Ensure images are large enough */
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-bn-c .card h3 {
    color: var(--secondary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-bn-c .card p {
    color: var(--text-dark);
    font-size: 0.95em;
}

/* Games Section */
.page-bn-c .section-games {
    padding: 60px 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-bn-c .section-games h2 {
    color: var(--primary-color);
}

.page-bn-c .section-games p {
    color: #cccccc;
}

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

.page-bn-c .game-item {
    background: #2a2a2a;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-bn-c .game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-bn-c .game-item img {
    width: 100%;
    max-width: 400px; /* Ensure images are large enough */
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-bn-c .game-item h3 {
    color: var(--primary-color);
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-bn-c .game-item h3 a {
    color: var(--primary-color);
}

.page-bn-c .game-item h3 a:hover {
    color: #ffffff;
}

.page-bn-c .game-item p {
    color: #bbbbbb;
    font-size: 0.9em;
}

/* Guide Section */
.page-bn-c .section-guide {
    padding: 60px 0;
    background-color: var(--background-light);
}

.page-bn-c ol {
    list-style-type: decimal;
    padding-left: 25px;
    margin-top: 20px;
}

.page-bn-c ol li {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: var(--text-dark);
}

.page-bn-c ol li strong {
    color: var(--secondary-color);
}

/* Strategy Section */
.page-bn-c .section-strategy {
    padding: 60px 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-bn-c .section-strategy h2 {
    color: var(--primary-color);
}

.page-bn-c .section-strategy p {
    color: #cccccc;
}

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

.page-bn-c .strategy-item {
    background: #2a2a2a;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 25px;
    text-align: center;
}

.page-bn-c .strategy-item img {
    width: 100%;
    max-width: 400px; /* Ensure images are large enough */
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-bn-c .strategy-item h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-bn-c .strategy-item p {
    color: #bbbbbb;
    font-size: 0.95em;
}

/* Promotions Section */
.page-bn-c .section-promotions {
    padding: 60px 0;
    background-color: var(--background-light);
}

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

.page-bn-c .promo-item {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-bn-c .promo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-bn-c .promo-item img {
    width: 100%;
    max-width: 400px; /* Ensure images are large enough */
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-bn-c .promo-item h3 {
    color: var(--secondary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-bn-c .promo-item h3 a {
    color: var(--secondary-color);
}

.page-bn-c .promo-item h3 a:hover {
    color: var(--primary-color);
}

.page-bn-c .promo-item p {
    color: var(--text-dark);
    font-size: 0.95em;
}

/* FAQ Section */
.page-bn-c .section-faq {
    padding: 60px 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-bn-c .section-faq h2 {
    color: var(--primary-color);
}

.page-bn-c .section-faq p {
    color: #cccccc;
}

.page-bn-c .faq-container {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-bn-c .faq-item {
    margin-bottom: 15px;
}

.page-bn-c .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #2a2a2a;
    border: 1px solid #444444;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-bn-c .faq-question:hover {
    background: #3a3a3a;
}

.page-bn-c .faq-question h3 {
    color: var(--primary-color);
    font-size: 1.2em;
    margin: 0;
    text-align: left;
}

.page-bn-c .faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.page-bn-c .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.page-bn-c .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    background: #333333;
    border-radius: 0 0 8px 8px;
}

.page-bn-c .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height for content */
    padding: 15px 20px;
    border: 1px solid #444444;
    border-top: none;
}

.page-bn-c .faq-answer p {
    color: #eeeeee;
    font-size: 1em;
    text-align: justify;
}

.page-bn-c .faq-answer a {
    color: var(--primary-color);
}

.page-bn-c .faq-answer a:hover {
    color: #ffffff;
}

/* Conclusion Section */
.page-bn-c .section-conclusion {
    padding: 60px 0;
    background-color: var(--secondary-color);
    color: var(--text-light);
    text-align: center;
}

.page-bn-c .section-conclusion h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-bn-c h1 {
        font-size: 2.2em;
    }
    .page-bn-c h2 {
        font-size: 1.8em;
    }
    .page-bn-c h3 {
        font-size: 1.3em;
    }
    .page-bn-c .hero-content p {
        font-size: 1.1em;
    }
    .page-bn-c .cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
    }
    .page-bn-c .intro-cards, .page-bn-c .game-list, .page-bn-c .strategy-grid, .page-bn-c .promo-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-bn-c .hero-section {
        padding: 40px 15px;
    }
    .page-bn-c h1 {
        font-size: 1.8em;
    }
    .page-bn-c h2 {
        font-size: 1.6em;
    }
    .page-bn-c h3 {
        font-size: 1.2em;
    }
    .page-bn-c .hero-image img {
        border-radius: 4px;
    }
    .page-bn-c .hero-content p {
        font-size: 1em;
    }
    .page-bn-c .cta-button {
        padding: 10px 25px;
        font-size: 1em;
    }
    .page-bn-c .card, .page-bn-c .game-item, .page-bn-c .strategy-item, .page-bn-c .promo-item {
        padding: 20px;
    }
    .page-bn-c .card img, .page-bn-c .game-item img, .page-bn-c .strategy-item img, .page-bn-c .promo-item img {
        height: 180px;
    }
    .page-bn-c .faq-question {
        padding: 12px 15px;
    }
    .page-bn-c .faq-question h3 {
        font-size: 1.1em;
    }
    .page-bn-c .faq-toggle {
        font-size: 20px;
    }
    .page-bn-c .faq-answer {
        padding: 0 15px;
    }
    .page-bn-c .faq-item.active .faq-answer {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .page-bn-c h1 {
        font-size: 1.5em;
    }
    .page-bn-c h2 {
        font-size: 1.4em;
    }
    .page-bn-c h3 {
        font-size: 1.1em;
    }
    .page-bn-c .intro-cards, .page-bn-c .game-list, .page-bn-c .strategy-grid, .page-bn-c .promo-list {
        grid-template-columns: 1fr;
    }
    .page-bn-c .card img, .page-bn-c .game-item img, .page-bn-c .strategy-item img, .page-bn-c .promo-item img {
        height: 150px;
    }
}