.page-bnc {
    background-color: #08160F;
    color: #F2FFF6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-bnc__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-bnc__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: 10px;
    text-align: center;
    overflow: hidden;
}

.page-bnc__hero-image-wrapper {
    width: 100%;
    position: relative;
}

.page-bnc__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
}

.page-bnc__hero-content {
    max-width: 800px;
    z-index: 1;
    position: relative;
    padding: 20px;
    background-color: rgba(17, 39, 27, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-bnc__main-title {
    font-size: clamp(2em, 4vw, 3.2em);
    font-weight: bold;
    color: #F2FFF6;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-bnc__hero-description {
    font-size: 1.1em;
    color: #A7D9B8;
    margin-bottom: 30px;
}

.page-bnc__cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-bnc__btn-primary,
.page-bnc__btn-secondary,
.page-bnc__btn-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-bnc__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    border: none;
}

.page-bnc__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-bnc__btn-secondary {
    background: #11271B;
    color: #F2FFF6;
    border: 2px solid #2E7A4E;
}

.page-bnc__btn-secondary:hover {
    background: #2E7A4E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 122, 78, 0.4);
}

.page-bnc__btn-text {
    background: none;
    color: #57E38D;
    border: 1px solid #57E38D;
    padding: 8px 15px;
}
.page-bnc__btn-text:hover {
    background: rgba(87, 227, 141, 0.1);
}

.page-bnc__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
    color: #F2FFF6;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.3;
}

.page-bnc__text-block {
    font-size: 1em;
    color: #A7D9B8;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-bnc__image-content {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-bnc__features-section {
    padding: 80px 0;
    background-color: #0A4B2C;
}

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

.page-bnc__feature-card {
    background-color: #11271B;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-bnc__feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-bnc__feature-icon {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

.page-bnc__card-title {
    font-size: 1.4em;
    color: #F2FFF6;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-bnc__card-description {
    font-size: 0.95em;
    color: #A7D9B8;
}

.page-bnc__games-section {
    padding: 80px 0;
    background-color: #08160F;
}

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

.page-bnc__game-card {
    background-color: #11271B;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-bnc__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-bnc__game-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

.page-bnc__how-to-play-section {
    padding: 80px 0;
    background-color: #0A4B2C;
}

.page-bnc__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-bnc__step-item {
    background-color: #11271B;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #57E38D;
}

.page-bnc__step-title {
    font-size: 1.5em;
    color: #F2FFF6;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-bnc__step-description {
    font-size: 1em;
    color: #A7D9B8;
}

.page-bnc__cta-buttons--centered {
    margin-top: 40px;
    text-align: center;
}