/* style/bn-c.css */
:root {
    --primary-color: #003366;
    --secondary-color: #FFD700;
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f4f7f6;
    --background-dark: #002244;
    --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 .section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-bn-c .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-bn-c .subsection-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid var(--secondary-color);
    padding-left: 15px;
}

.page-bn-c .cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-bn-c .cta-button:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.page-bn-c .hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--background-dark));
    padding: 80px 0;
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-bn-c .hero-content {
    max-width: 800px;
    margin-bottom: 40px;
}

.page-bn-c .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.page-bn-c .hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-bn-c .hero-image {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.page-bn-c .hero-image .game-main-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

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

.page-bn-c .introduction-section p {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.page-bn-c .feature-item .feature-icon {
    width: 150px; /* Increased size */
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-bn-c .feature-item h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-bn-c .feature-item p {
    font-size: 1em;
    color: var(--text-dark);
    text-align: center;
}

/* Gameplay Section */
.page-bn-c .gameplay-section {
    padding: 60px 0;
    background-color: #e9f0f5;
}

.page-bn-c .gameplay-section p {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.page-bn-c .game-card .game-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.page-bn-c .game-card h3 {
    font-size: 1.4em;
    margin: 20px 15px 10px;
    color: var(--primary-color);
}

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

.page-bn-c .game-card h3 a:hover {
    color: var(--secondary-color);
}

.page-bn-c .game-card p {
    font-size: 0.95em;
    color: #666;
    padding: 0 15px 20px;
    text-align: center;
}

.page-bn-c .game-card .btn-play {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.page-bn-c .game-card .btn-play:hover {
    background: #e6c200;
}

/* How-To-Play Section */
.page-bn-c .how-to-play-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.page-bn-c .how-to-play-section p {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-bn-c .step-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    padding-top: 60px;
}

.page-bn-c .step-item .step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--text-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    border: 5px solid var(--secondary-color);
    box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.3);
}

.page-bn-c .step-item h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-bn-c .step-item p {
    font-size: 1em;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.page-bn-c .step-item .btn-step {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-bn-c .step-item .btn-step:hover {
    background: #004488;
}

.page-bn-c .how-to-play-section ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-bn-c .how-to-play-section ul li {
    background: #ffffff;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 5px solid var(--secondary-color);
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
}

.page-bn-c .how-to-play-section ul li strong {
    color: var(--primary-color);
}

/* Promotions Section */
.page-bn-c .promotions-section {
    padding: 60px 0;
    background-color: #f0f8ff;
}

.page-bn-c .promotions-section p {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.page-bn-c .promo-card .promo-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.page-bn-c .promo-card h3 {
    font-size: 1.4em;
    margin: 20px 15px 10px;
    color: var(--primary-color);
}

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

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

.page-bn-c .promo-card p {
    font-size: 0.95em;
    color: #666;
    padding: 0 15px 20px;
    text-align: center;
}

.page-bn-c .promo-card .btn-promo {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.page-bn-c .promo-card .btn-promo:hover {
    background: #e6c200;
}

.page-bn-c .promo-call-to-action {
    margin-top: 50px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--primary-color);
}

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

.page-bn-c .why-choose-section .section-title {
    color: var(--secondary-color);
}

.page-bn-c .why-choose-section .section-title::after {
    background-color: var(--text-light);
}

.page-bn-c .why-choose-section p {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

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

.page-bn-c .advantage-item {
    background: rgba(0, 51, 102, 0.8);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid var(--secondary-color);
}

.page-bn-c .advantage-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 51, 102, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-bn-c .advantage-item .advantage-icon {
    width: 150px; /* Increased size */
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-bn-c .advantage-item h3 {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-bn-c .advantage-item p {
    font-size: 1em;
    color: #cccccc;
    text-align: center;
}

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

.page-bn-c .faq-section .section-title {
    margin-bottom: 50px;
}

.page-bn-c .faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-bn-c .faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-bn-c .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.page-bn-c .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    color: var(--text-dark);
    background-color: #f9f9f9;
}

.page-bn-c .faq-item.active .faq-answer {
    max-height: 500px; /* Enough height to contain content */
    padding: 20px 25px;
}

.page-bn-c .faq-answer p {
    margin: 0;
    font-size: 1.05em;
    line-height: 1.7;
}

/* Latest News Section */
.page-bn-c .latest-news-section {
    padding: 60px 0;
    background-color: #e9f0f5;
}

.page-bn-c .latest-news-section p {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-bn-c .news-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-bn-c .news-card .news-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.page-bn-c .news-card h3 {
    font-size: 1.4em;
    margin: 20px 15px 10px;
    color: var(--primary-color);
}

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

.page-bn-c .news-card h3 a:hover {
    color: var(--secondary-color);
}

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

.page-bn-c .news-card .btn-read-more {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 0 15px 20px;
    transition: background-color 0.3s ease;
}

.page-bn-c .news-card .btn-read-more:hover {
    background: #004488;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .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 .feature-grid, .page-bn-c .game-cards-grid, .page-bn-c .steps-grid, .page-bn-c .promo-cards-grid, .page-bn-c .advantages-grid, .page-bn-c .news-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-bn-c .hero-title {
        font-size: 2.5em;
    }
    .page-bn-c .hero-description {
        font-size: 1.1em;
    }
    .page-bn-c .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-bn-c .section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }
    .page-bn-c .subsection-title {
        font-size: 1.6em;
    }
    .page-bn-c .feature-grid, .page-bn-c .game-cards-grid, .page-bn-c .steps-grid, .page-bn-c .promo-cards-grid, .page-bn-c .advantages-grid, .page-bn-c .news-cards-grid {
        grid-template-columns: 1fr;
    }
    .page-bn-c .feature-item, .page-bn-c .game-card, .page-bn-c .step-item, .page-bn-c .promo-card, .page-bn-c .advantage-item, .page-bn-c .news-card {
        padding: 25px;
    }
    .page-bn-c .step-item .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
    .page-bn-c .faq-question {
        padding: 15px 20px;
    }
    .page-bn-c .faq-question h3 {
        font-size: 1.1em;
    }
    .page-bn-c .faq-answer {
        padding: 0 20px;
    }
    .page-bn-c .faq-item.active .faq-answer {
        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 .section-title {
        font-size: 1.8em;
    }
    .page-bn-c .faq-question h3 {
        font-size: 1em;
    }
    .page-bn-c .faq-toggle {
        font-size: 1.5em;
    }
}