/* style/bn-c.css */
.page-bn-c {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    background-color: #1a1a1a;
    line-height: 1.6;
}

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

.page-bn-c__section {
    padding: 60px 0;
    text-align: center;
}

.page-bn-c__section:nth-child(even) {
    background-color: #2a2a2a;
}

.page-bn-c__section-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.page-bn-c__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-bn-c__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin: 10px;
    cursor: pointer;
}

.page-bn-c__btn--primary {
    background-color: #FFD700;
    color: #8B0000;
    border: 2px solid #FFD700;
}

.page-bn-c__btn--primary:hover {
    background-color: #e6c200;
    color: #6a0000;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-bn-c__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-bn-c__btn--secondary:hover {
    background-color: #FFD700;
    color: #8B0000;
    transform: translateY(-2px);
}

.page-bn-c__btn--small {
    padding: 8px 20px;
    font-size: 0.95em;
}

.page-bn-c__btn--large {
    padding: 15px 40px;
    font-size: 1.2em;
}

/* Hero Section */
.page-bn-c__hero {
    background: linear-gradient(135deg, #8B0000, #4d0000);
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-bn-c__hero-content {
    max-width: 800px;
    z-index: 1;
    text-align: center;
}

.page-bn-c__hero-title {
    font-size: 4em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}

.page-bn-c__hero-description {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-bn-c__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    overflow: hidden;
}

.page-bn-c__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Features Section */
.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: #333;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-bn-c__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-bn-c__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.page-bn-c__feature-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-bn-c__feature-description {
    color: #c0c0c0;
}

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

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

.page-bn-c__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-bn-c__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-bn-c__game-title {
    font-size: 1.6em;
    color: #FFD700;
    margin: 20px 0 10px;
}

.page-bn-c__game-description {
    color: #c0c0c0;
    padding: 0 20px 20px;
}

/* Gameplay & Tips Section */
.page-bn-c__ordered-list, .page-bn-c__unordered-list {
    text-align: left;
    max-width: 800px;
    margin: 20px auto 40px;
    color: #e0e0e0;
    font-size: 1.1em;
}

.page-bn-c__ordered-list li, .page-bn-c__unordered-list li {
    margin-bottom: 10px;
    padding-left: 10px;
}

.page-bn-c__ordered-list li strong, .page-bn-c__unordered-list li strong {
    color: #FFD700;
}

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

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

.page-bn-c__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-bn-c__promo-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 3px solid #8B0000;
}

.page-bn-c__promo-title {
    font-size: 1.5em;
    color: #FFD700;
    margin: 20px 0 10px;
}

.page-bn-c__promo-description {
    color: #c0c0c0;
    padding: 0 20px 20px;
}

/* Call to Action Section */
.page-bn-c__cta {
    background: #8B0000;
    padding: 80px 0;
}

.page-bn-c__cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-bn-c__cta .page-bn-c__section-title {
    color: #FFD700;
    font-size: 3em;
}

.page-bn-c__cta .page-bn-c__text {
    color: #fff;
    font-size: 1.2em;
}

.page-bn-c__cta-buttons {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .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__features-grid, .page-bn-c__game-grid, .page-bn-c__promo-grid {
        grid-template-columns: 1fr;
    }

    .page-bn-c__btn--large {
        padding: 12px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-bn-c__hero-title {
        font-size: 2.5em;
    }

    .page-bn-c__hero-description {
        font-size: 1em;
    }

    .page-bn-c__section-title {
        font-size: 1.8em;
    }

    .page-bn-c__btn {
        width: 100%;
        margin: 10px 0;
    }

    .page-bn-c__btn--large {
        width: auto;
    }
}