:root {
    --primary-color: #0A2239;
    --secondary-color: #FFD700;
    --text-light: #ffffff;
    --text-dark: #333333;
    --background-light: #f4f7f6;
    --background-dark: #1a3a53; /* Slightly lighter dark blue for sections */
    --accent-color: #e0b000; /* Darker gold for hover states */
    --border-color: #4a6c89;
}

.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: 20px;
}

.page-bn-c-intro,
.page-bn-c-why-choose,
.page-bn-c-games,
.page-bn-c-guide,
.page-bn-c-tips,
.page-bn-c-promotions,
.page-bn-c-faq,
.page-bn-c-conclusion {
    padding: 60px 0;
}

.page-bn-c-intro,
.page-bn-c-games,
.page-bn-c-tips,
.page-bn-c-faq {
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-bn-c-intro h1,
.page-bn-c-why-choose h2,
.page-bn-c-games h2,
.page-bn-c-guide h2,
.page-bn-c-tips h2,
.page-bn-c-promotions h2,
.page-bn-c-faq h2,
.page-bn-c-conclusion h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color);
    font-size: 2.5em;
    font-weight: bold;
}

.page-bn-c-intro p,
.page-bn-c-why-choose p,
.page-bn-c-games p,
.page-bn-c-guide p,
.page-bn-c-tips p,
.page-bn-c-promotions p,
.page-bn-c-faq p,
.page-bn-c-conclusion p {
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.8;
}

.page-bn-c-intro h1 {
    color: var(--secondary-color);
    font-size: 3em;
    margin-bottom: 20px;
}

.page-bn-c-image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-bn-c-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-bn-c-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

.page-bn-c-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.page-bn-c-button.primary-cta {
    display: block;
    width: fit-content;
    margin: 40px auto 20px auto;
    font-size: 1.3em;
    padding: 18px 40px;
}

/* Why Choose Section */
.page-bn-c-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-bn-c-feature-item {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    color: var(--text-light);
}

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

.page-bn-c-feature-icon {
    width: 250px; /* Enforce min size */
    height: 180px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

/* Games Section */
.page-bn-c-game-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-bn-c-game-card {
    background-color: var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    color: var(--text-light);
}

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

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

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

.page-bn-c-game-image {
    width: 100%;
    height: 200px; /* Enforce min size */
    object-fit: cover;
    display: block;
}

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

.page-bn-c-step-item {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: var(--text-light);
}

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

.page-bn-c-step-image {
    width: 100%;
    height: 220px; /* Enforce min size */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Tips Section */
.page-bn-c-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}