/* style/bn-c.css */

:root {
    --primary-color: #0A192F;
    --secondary-color: #E0B400;
    --text-light: #FFFFFF;
    --text-dark: #0A192F;
    --bg-light: #F9F9F9;
    --bg-medium: #1a2b47;
    --border-color: #e0e0e0;
}

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

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

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

.page-bn-c section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

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

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

.page-bn-c h1 {
    font-size: 3.2em;
    color: var(--text-light);
    margin-bottom: 25px;
}

.page-bn-c h2 {
    font-size: 2.5em;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 10px;
}

.page-bn-c h2::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 h3 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-bn-c p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333;
}

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

.page-bn-c a:hover {
    color: #c79a00;
    text-decoration: underline;
}

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

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

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

.page-bn-c .cta-button.secondary:hover {
    background: #06101f;
}

/* Hero Section */
.page-bn-c .hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2b47 100%);
    color: var(--text-light);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

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

.page-bn-c .hero-content {
    flex: 1;
    text-align: left;
}

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

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

.page-bn-c .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.page-bn-c .feature-item p {
    color: #555;
    font-size: 1em;
}

.page-bn-c .feature-item img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

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

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

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

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

.page-bn-c .game-card h3 {
    font-size: 1.6em;
    color: var(--primary-color);
    padding: 15px 10px 5px;
    margin-top: 0;
}

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

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

.page-bn-c .card-button:hover {
    background: #c79a00;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

.page-bn-c .tip-item {
    background-color: var(--text-light);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--secondary-color);
}

.page-bn-c .tip-item h3 {
    text-align: left;
    color: var(--primary-color);
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-bn-c .tip-item p {
    font-size: 1em;
    color: #444;
}

/* How to Join Section */
.page-bn-c .step-by-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

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

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

.page-bn-c .step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 15px;
    background-color: rgba(224, 180, 0, 0.1);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.page-bn-c .step-item h3 {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-top: 0;
}

.page-bn-c .step-item p {
    font-size: 1em;
    color: #555;
}

/* Promotions List */
.page-bn-c .promotion-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-bn-c .promotion-list li {
    background-color: var(--text-light);
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #333;
    border-left: 4px solid var(--secondary-color);
}

.page-bn-c .promotion-list li strong {
    color: var(--primary-color);
}

/* FAQ Section */
.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;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

.page-bn-c .faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-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.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #fefefe;
    color: #444;
}

.page-bn-c .faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 20px 25px;
}

.page-bn-c .faq-answer p {
    margin: 0;
    font-size: 1em;
}

/* Responsible Gaming Section */
.page-bn-c .section-responsible-gaming {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.page-bn-c .section-responsible-gaming h2 {
    color: var(--secondary-color);
}

.page-bn-c .section-responsible-gaming p {
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-bn-c .hero-container {
        flex-direction: column;
        text-align: center;
    }

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

    .page-bn-c h1 {
        font-size: 2.5em;
    }

    .page-bn-c h2 {
        font-size: 2em;
    }

    .page-bn-c h3 {
        font-size: 1.5em;
    }

    .page-bn-c .hero-image {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .page-bn-c section {
        padding: 40px 0;
    }

    .page-bn-c .container {
        padding: 0 15px;
    }

    .page-bn-c h1 {
        font-size: 2em;
    }

    .page-bn-c h2 {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    .page-bn-c h3 {
        font-size: 1.3em;
    }

    .page-bn-c p {
        font-size: 1em;
    }

    .page-bn-c .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }

    .page-bn-c .features-grid, .page-bn-c .game-cards-grid, .page-bn-c .tips-list, .page-bn-c .step-by-step {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-bn-c .feature-item, .page-bn-c .game-card, .page-bn-c .tip-item, .page-bn-c .step-item {
        padding: 20px;
    }

    .page-bn-c .faq-question {
        padding: 15px 20px;
    }

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

    .page-bn-c .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-bn-c h1 {
        font-size: 1.8em;
    }
    .page-bn-c .hero-content p {
        font-size: 1em;
    }
}