:root {
    --primary-color: #CC0000; /* Deep Red */
    --secondary-color: #FFD700; /* Gold */
    --text-color-dark: #333333;
    --text-color-light: #FFFFFF;
    --bg-dark: #1a1a1a;
    --bg-light: #f5f5f5;
    --border-color: #e0e0e0;
}

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

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

.page-bn-c-section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-bn-c-section:nth-of-type(even) {
    background-color: #e6e6e6; /* Light grey for alternating sections */
}

.page-bn-c-section-title {
    font-size: 3em;
    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-section-description {
    text-align: center;
    font-size: 1.2em;
    color: var(--text-color-dark);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-bn-c-button {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--text-color-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.page-bn-c-button:hover {
    background: var(--secondary-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-bn-c-button.primary-button {
    background: var(--primary-color);
    color: var(--text-color-light);
}

.page-bn-c-button.small-button {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-bn-c-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

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

/* 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: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #330000 100%); /* Darker red gradient */
    overflow: hidden;
}

.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;
    z-index: 1;
}

.page-bn-c .hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-bn-c .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.page-bn-c .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent dark overlay for text readability */
    border-radius: 10px;
    margin-top: -80px; /* Overlap with image slightly */
    padding-top: 100px; /* Adjust padding to make space for overlap */
}

.page-bn-c-title {
    font-size: 3.8em;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.page-bn-c-subtitle {
    font-size: 1.5em;
    color: var(--text-color-light);
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.page-bn-c-cta-button:hover {
    background: var(--text-color-light);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-bn-c .introduction-section p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--text-color-dark);
}

.page-bn-c .introduction-section strong {
    color: var(--primary-color);
}

.page-bn-c-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-bn-c-text-content {
    flex: 2;
}

.page-bn-c-image-content {
    flex: 1;
    text-align: center;
}

.page-bn-c-image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.page-bn-c .features-section {
    background-color: #f0f0f0;
}

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

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

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

.page-bn-c-feature-item img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
}

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

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

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

.page-bn-c-steps-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-bn-c-step-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-bn-c-step-item img {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    object-fit: contain;
    border-radius: 50%;
    background-color: var(--secondary-color);
    padding: 10px;
}

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

.page-bn-c-step-item p {
    font-size: 1.05em;
    color: var(--text-color-dark);
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-bn-c-tip {
    text-align: center;
    font-style: italic;
    margin-top: 40px;
    padding: 20px;
    background-color: #fff8e1; /* Light yellow background */
    border-left: 5px solid var(--secondary-color);
    border-radius: 5px;
    color: #555;
}

.page-bn-c-tip strong {
    color: var(--primary-color);
}

/* Promotions Section */
.page-bn-c .promotions-section {
    background-color: #f0f0f0;
}

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

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

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

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

.page-bn-c-promotion-card h3 {
    font-size: 1.6em;
    color: var(--primary-color);
    padding: 15px 20px 10px;
}

.page-bn-c-promotion-card h3 a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.page-bn-c-promotion-card p {
    font-size: 1em;
    color: var(--text-color-dark);
    padding: 0 20px 20px;
}

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

.page-bn-c-view-all {
    text-align: center;
    margin-top: 50px;
}

/* Safety & Customer Service Section */
.page-bn-c .safety-customer-service-section {
    background-color: var(--bg-light);
}

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

.page-bn-c-safety-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-bn-c-safety-item img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
}

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

.page-bn-c-safety-item p {
    font-size: 1.05em;
    color: var(--text-color-dark);
    margin-bottom: 25px;
    flex-grow: 1;
}

/* FAQ Section */
.page-bn-c .faq-section {
    background-color: #f0f0f0;
}

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

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-question:hover {
    background: #f5f5f5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question h3 {
    font-size: 1.3em;
    color: var(--text-color-dark);
    margin: 0;
    flex-grow: 1;
    text-align: left;
}

.faq-toggle {
    font-size: 2em;
    font-weight: bold;
    color: var(--primary-color);
    margin-left: 15px;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #f9f9f9;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed to fit content */
    padding: 20px 25px;
    border: 1px solid var(--border-color);
    border-top: none;
}

.faq-answer p {
    font-size: 1.05em;
    color: var(--text-color-dark);
    margin: 0;
}

/* Latest News Section */
.page-bn-c .latest-news-section {
    background-color: var(--bg-light);
}

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

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

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

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

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

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

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

.page-bn-c-news-card p {
    font-size: 1em;
    color: var(--text-color-dark);
    padding: 0 20px 15px;
    flex-grow: 1;
}

.page-bn-c-news-date {
    font-size: 0.9em;
    color: #888888;
    padding: 0 20px 20px;
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-bn-c-section-title {
        font-size: 2.5em;
    }
    .page-bn-c-subtitle {
        font-size: 1.3em;
    }
    .page-bn-c-title {
        font-size: 3em;
    }
    .page-bn-c-cta-button {
        font-size: 1.4em;
        padding: 15px 35px;
    }
    .page-bn-c-content-wrapper {
        flex-direction: column;
    }
    .page-bn-c-text-content, .page-bn-c-image-content {
        flex: none;
        width: 100%;
    }
    .page-bn-c-hero-content {
        margin-top: -50px;
        padding-top: 80px;
    }
}

@media (max-width: 768px) {
    .page-bn-c-section {
        padding: 40px 0;
    }
    .page-bn-c-section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }
    .page-bn-c-section-description {
        font-size: 1.1em;
        margin-bottom: 40px;
    }
    .page-bn-c-title {
        font-size: 2.5em;
    }
    .page-bn-c-subtitle {
        font-size: 1.1em;
        margin-bottom: 30px;
    }
    .page-bn-c-cta-button {
        font-size: 1.2em;
        padding: 12px 30px;
    }
    .page-bn-c-features-grid, .page-bn-c-steps-wrapper, .page-bn-c-promotions-grid, .page-bn-c-safety-grid, .page-bn-c-news-grid {
        grid-template-columns: 1fr;
    }
    .page-bn-c-feature-item, .page-bn-c-step-item, .page-bn-c-promotion-card, .page-bn-c-safety-item, .page-bn-c-news-card {
        padding: 20px;
    }
    .page-bn-c-feature-item h3, .page-bn-c-step-item h3, .page-bn-c-safety-item h3 {
        font-size: 1.5em;
    }
    .page-bn-c-promotion-card h3, .page-bn-c-news-card h3 {
        font-size: 1.3em;
    }
    .faq-question {
        padding: 15px 20px;
    }
    .faq-question h3 {
        font-size: 1.1em;
    }
    .faq-toggle {
        font-size: 1.8em;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
    .page-bn-c-hero-content {
        margin-top: -30px;
        padding-top: 60px;
    }
}

@media (max-width: 480px) {
    .page-bn-c-section-title {
        font-size: 1.8em;
    }
    .page-bn-c-title {
        font-size: 2em;
    }
    .page-bn-c-subtitle {
        font-size: 1em;
    }
    .page-bn-c-cta-button {
        font-size: 1em;
        padding: 10px 25px;
    }
    .page-bn-c-hero-content {
        margin-top: -20px;
        padding-top: 40px;
    }
    .page-bn-c-feature-item img, .page-bn-c-step-item img, .page-bn-c-safety-item img {
        width: 80px;
        height: 80px;
    }
}