*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bb-white: #FFFFFF;
    --bb-dark: #2B2A28;
    --bb-yellow: #FDE94E;
    --bb-bg: #F8F9F9;
    --bb-gray: #E8EAEB;
    --bb-gray2: #6B7280;
    --bb-radius: 12px;
    --bb-radius-sm: 8px;
    --bb-shadow: 0 2px 16px rgba(43, 42, 40, 0.10);
    --bb-shadow-md: 0 4px 32px rgba(43, 42, 40, 0.14);
}

html {
    scroll-behavior: smooth;
    background: var(--bb-bg);
}

body {
    font-family: Arial, Tahoma, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--bb-dark);
    background: var(--bb-bg);
    overflow-x: hidden;
}

a {
    color: var(--bb-dark);
    transition: color 0.2s;
}

a:hover {
    color: #FBD000;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Arial, Tahoma, sans-serif;
    line-height: 1.25;
    color: var(--bb-dark);
}

h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 0.6em;
}

h2 {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    margin-bottom: 0.5em;
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 0.4em;
}

p {
    margin-bottom: 1em;
}

ul, ol {
    padding-left: 1.4em;
    margin-bottom: 1em;
}

li {
    margin-bottom: 0.3em;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    border: 1.5px solid var(--bb-gray);
    padding: 10px 14px;
    text-align: left;
}

th {
    background: var(--bb-dark);
    color: var(--bb-white);
}

tr:nth-child(even) {
    background: var(--bb-gray);
}

.bb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.bb-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.bb-section {
    padding: 48px 0;
}

.bb-section--sm {
    padding: 28px 0;
}

.bb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    cursor: pointer;
    font-family: Arial, Tahoma, sans-serif;
    font-size: 0.97rem;
    font-weight: 700;
    border-radius: var(--bb-radius-sm);
    padding: 11px 24px;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
    line-height: 1.2;
}

.bb-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.bb-btn:active {
    transform: translateY(0);
}

.bb-btn--dark {
    background: var(--bb-dark);
    color: var(--bb-white);
}

.bb-btn--dark:hover {
    color: var(--bb-yellow);
}

.bb-btn--yellow {
    background: var(--bb-yellow);
    color: var(--bb-dark);
}

.bb-btn--yellow:hover {
    background: #FBD000;
    color: var(--bb-dark);
}

.bb-btn--sm {
    padding: 8px 16px;
    font-size: 0.88rem;
}

.bb-btn--lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.bb-btn--block {
    width: 100%;
    display: flex;
}

.bb-card {
    background: var(--bb-white);
    border-radius: var(--bb-radius);
    box-shadow: var(--bb-shadow);
    padding: 24px;
}

.bb-card--border {
    border: 2px solid var(--bb-gray);
}

.bb-box {
    background: var(--bb-white);
    border-radius: var(--bb-radius);
    box-shadow: var(--bb-shadow);
    padding: 32px;
    margin-bottom: 28px;
}

.bb-badge {
    display: inline-block;
    background: var(--bb-yellow);
    color: var(--bb-dark);
    border-radius: 6px;
    padding: 2px 10px;
    font-size: 0.82rem;
    font-weight: 700;
}

.bb-header {
    background: var(--bb-white);
    box-shadow: 0 2px 8px rgba(43, 42, 40, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.bb-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.bb-header__logo {
    flex-shrink: 0;
}

.bb-header__logo img {
    height: 44px;
    width: auto;
}

.bb-header__nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.bb-header__nav a {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--bb-dark);
    padding: 6px 10px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.bb-header__nav a:hover {
    background: var(--bb-yellow);
    color: var(--bb-dark);
}

.bb-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.bb-header__online {
    font-size: 0.78rem;
    color: var(--bb-gray2);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

.bb-header__online-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: bb-pulse 1.5s infinite;
}

@keyframes bb-pulse {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: 0.4
    }
}

.bb-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}

.bb-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--bb-dark);
    border-radius: 2px;
    transition: all 0.25s;
}

.bb-burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.bb-burger.active span:nth-child(2) {
    opacity: 0;
}

.bb-burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.bb-mobile-nav {
    display: none;
    background: var(--bb-white);
    border-top: 1px solid var(--bb-gray);
    padding: 12px 16px;
    flex-direction: column;
    gap: 4px;
    max-width: 1200px;
    margin: 0 auto;
}

.bb-mobile-nav.active {
    display: flex;
}

.bb-mobile-nav a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--bb-dark);
    padding: 9px 12px;
    border-radius: 8px;
    text-decoration: none;
    display: block;
    transition: background 0.15s;
}

.bb-mobile-nav a:hover {
    background: var(--bb-yellow);
}

.bb-hero {
    background: var(--bb-dark);
    color: var(--bb-white);
    position: relative;
    overflow: hidden;
}

.bb-hero__slide {
    display: none;
    align-items: center;
    min-height: 340px;
    padding: 48px 16px;
}

.bb-hero__slide.active {
    display: flex;
}

.bb-hero__slide-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
}

.bb-hero__text {
    flex: 1;
}

.bb-hero__text h1, .bb-hero__text h2 {
    color: var(--bb-white);
}

.bb-hero__text p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.1rem;
    margin-bottom: 1.2em;
}

.bb-hero__img {
    flex: 0 0 auto;
}

.bb-hero__img img {
    border-radius: var(--bb-radius);
    width: 320px;
    height: 200px;
    object-fit: cover;
}

.bb-hero__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 0 8px;
}

.bb-hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    border: none;
    transition: background 0.2s;
}

.bb-hero__dot.active {
    background: var(--bb-yellow);
}

.bb-hero--plain {
    min-height: 280px;
    display: flex;
    align-items: center;
}

.bb-hero--plain .bb-hero__slide {
    display: flex;
    width: 100%;
}

.bb-hero {
    background: linear-gradient(rgba(12, 12, 12, .65), rgba(12, 12, 12, .65)),
    url('/bep-banner.jpg') center center / cover no-repeat;
    color: var(--bb-white);
    position: relative;
    overflow: hidden;
}

.bb-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.bb-adv-item {
    background: var(--bb-white);
    border-radius: var(--bb-radius);
    padding: 20px;
    box-shadow: var(--bb-shadow);
    text-align: center;
    transition: transform 0.2s;
}

.bb-adv-item:hover {
    transform: translateY(-3px);
}

.bb-adv-item__icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.bb-adv-item__title {
    font-weight: 700;
    font-size: 0.97rem;
    margin-bottom: 4px;
}

.bb-adv-item__text {
    font-size: 0.86rem;
    color: var(--bb-gray2);
}

.bb-jackpot {
    background: var(--bb-dark);
    color: var(--bb-white);
    border-radius: var(--bb-radius);
    padding: 32px;
    text-align: center;
    margin-bottom: 0;
}

.bb-jackpot h2 {
    color: var(--bb-yellow);
}

.bb-jackpot__amount {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--bb-yellow);
    letter-spacing: 0.02em;
    margin: 16px 0;
    text-shadow: 0 2px 12px rgba(253, 233, 78, 0.4);
}

.bb-jackpot__sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.bb-mirrors {
    margin-bottom: 0;
}

.bb-mirrors__date {
    font-size: 0.85rem;
    color: var(--bb-gray2);
    margin-bottom: 12px;
}

.bb-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.bb-bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.bb-bonus-card {
    background: var(--bb-white);
    border-radius: var(--bb-radius);
    box-shadow: var(--bb-shadow);
    padding: 24px;
    border-top: 4px solid var(--bb-yellow);
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bb-bonus-card:hover {
    transform: translateY(-3px);
}

.bb-bonus-card__title {
    font-weight: 700;
    font-size: 1.05rem;
}

.bb-bonus-card__amount {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--bb-dark);
}

.bb-bonus-card__desc {
    font-size: 0.88rem;
    color: var(--bb-gray2);
}

.bb-slot-machine {
    background: var(--bb-dark);
    border-radius: var(--bb-radius);
    padding: 32px;
    text-align: center;
    color: var(--bb-white);
}

.bb-slot-machine h2 {
    color: var(--bb-yellow);
    margin-bottom: 20px;
}

.bb-reels {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.bb-reel {
    width: 72px;
    height: 72px;
    background: var(--bb-white);
    border-radius: var(--bb-radius-sm);
    font-size: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.1s;
    overflow: hidden;
}

.bb-reel.spinning {
    animation: bb-spin 0.15s linear infinite;
}

@keyframes bb-spin {
    0% {
        transform: translateY(-6px)
    }
    50% {
        transform: translateY(6px)
    }
    100% {
        transform: translateY(-6px)
    }
}

.bb-slot-result {
    min-height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.bb-slot-result__win {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--bb-yellow);
}

.bb-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.bb-review-card {
    background: var(--bb-white);
    border-radius: var(--bb-radius);
    box-shadow: var(--bb-shadow);
    padding: 20px;
}

.bb-review-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.bb-review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.bb-review-card__name {
    font-weight: 700;
    font-size: 0.95rem;
}

.bb-review-card__stars {
    color: #FBD000;
    font-size: 1.05rem;
    display: flex;
    gap: 2px;
}

.bb-review-card__text {
    font-size: 0.9rem;
    color: var(--bb-gray2);
    line-height: 1.55;
}

.bb-review-form {
    background: var(--bb-white);
    border-radius: var(--bb-radius);
    box-shadow: var(--bb-shadow);
    padding: 28px;
    max-width: 520px;
}

.bb-form-group {
    margin-bottom: 16px;
}

.bb-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.92rem;
}

.bb-form-group input, .bb-form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--bb-gray);
    border-radius: var(--bb-radius-sm);
    font-family: Arial, Tahoma, sans-serif;
    font-size: 0.95rem;
    background: var(--bb-bg);
    transition: border-color 0.2s;
}

.bb-form-group input:focus, .bb-form-group textarea:focus {
    outline: none;
    border-color: var(--bb-dark);
}

.bb-form-group textarea {
    min-height: 90px;
    resize: vertical;
}

.bb-form-success {
    display: none;
    background: #dcfce7;
    color: #166534;
    border-radius: 8px;
    padding: 12px 16px;
    font-weight: 600;
    margin-top: 12px;
}

.bb-footer {
    background: var(--bb-white);
    border-top: 1.5px solid var(--bb-gray);
    margin-top: auto;
}

.bb-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 36px 16px 20px;
}

.bb-footer__top {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    margin-bottom: 28px;
}

.bb-footer__logo img {
    height: 36px;
}

.bb-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bb-footer__nav a {
    font-size: 0.9rem;
    color: var(--bb-dark);
    text-decoration: none;
}

.bb-footer__nav a:hover {
    color: #FBD000;
    text-decoration: underline;
}

.bb-footer__nav-title {
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 4px;
    color: var(--bb-gray2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bb-footer__payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.bb-footer__payments-title {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--bb-gray2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.bb-footer__pay-badge {
    background: var(--bb-bg);
    border: 1px solid var(--bb-gray);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--bb-dark);
}

.bb-footer__providers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.bb-footer__prov-badge {
    background: var(--bb-dark);
    color: var(--bb-white);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.78rem;
    font-weight: 600;
}

.bb-footer__bottom {
    border-top: 1px solid var(--bb-gray);
    padding-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
}

.bb-footer__copyright {
    font-size: 0.82rem;
    color: var(--bb-gray2);
}

.bb-footer__legal {
    font-size: 0.78rem;
    color: var(--bb-gray2);
    max-width: 600px;
    line-height: 1.5;
}

.bb-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--bb-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 16px;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.18);
}

.bb-widget__text {
    color: var(--bb-white);
    font-size: 0.95rem;
    font-weight: 600;
}

.bb-widget__text span {
    color: var(--bb-yellow);
}

.bb-widget__close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 1.2rem;
    margin-left: 8px;
    line-height: 1;
    transition: color 0.2s;
}

.bb-widget__close:hover {
    color: var(--bb-white);
}

.bb-promo-block {
    background: var(--bb-yellow);
    border-radius: var(--bb-radius);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0;
}

.bb-promo-block__text h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.bb-promo-block__text p {
    font-size: 0.92rem;
    margin: 0;
    color: #444;
}

.bb-promo-block__code {
    background: var(--bb-dark);
    color: var(--bb-yellow);
    border-radius: var(--bb-radius-sm);
    padding: 10px 20px;
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.2s;
    user-select: all;
}

.bb-promo-block__code:hover {
    background: #3a3936;
}

.bb-promo-copied {
    font-size: 0.8rem;
    color: #166534;
    margin-top: 4px;
    display: none;
}

.bb-section-title {
    text-align: center;
    margin-bottom: 32px;
}

.bb-section-title h2 {
    margin-bottom: 8px;
}

.bb-section-title p {
    color: var(--bb-gray2);
}

.bb-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.bb-game-card {
    background: var(--bb-white);
    border-radius: var(--bb-radius);
    overflow: hidden;
    box-shadow: var(--bb-shadow);
    transition: transform 0.2s;
}

.bb-game-card:hover {
    transform: translateY(-3px);
}

.bb-game-card__img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.bb-game-card__body {
    padding: 10px 12px;
}

.bb-game-card__name {
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 6px;
}

.bb-author {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bb-white);
    border-radius: var(--bb-radius);
    padding: 24px;
    box-shadow: var(--bb-shadow);
    margin-top: 32px;
}

.bb-author__photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.bb-author__name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
}

.bb-author__bio {
    font-size: 0.88rem;
    color: var(--bb-gray2);
    line-height: 1.55;
    margin-bottom: 8px;
}

.bb-author__links {
    display: flex;
    gap: 10px;
}

.bb-author__links a {
    font-size: 0.85rem;
    color: var(--bb-dark);
    text-decoration: none;
    font-weight: 600;
}

.bb-author__links a:hover {
    color: var(--bb-yellow);
}

.bb-faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bb-faq-item {
    background: var(--bb-white);
    border-radius: var(--bb-radius-sm);
    box-shadow: var(--bb-shadow);
    overflow: hidden;
}

.bb-faq-item__q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 16px 20px;
    font-size: 0.97rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Arial, Tahoma, sans-serif;
    gap: 12px;
}

.bb-faq-item__q svg {
    flex-shrink: 0;
    transition: transform 0.25s;
}

.bb-faq-item.open .bb-faq-item__q svg {
    transform: rotate(180deg);
}

.bb-faq-item__a {
    display: none;
    padding: 0 20px 16px;
    font-size: 0.92rem;
    color: var(--bb-gray2);
    line-height: 1.6;
}

.bb-faq-item.open .bb-faq-item__a {
    display: block;
}

.bb-content-block {
    padding: 12px 0;
}

.bb-content-block h2 {
    margin-top: 1.2em;
    margin-bottom: 0.4em;
}

.bb-content-block h3 {
    margin-top: 1em;
    margin-bottom: 0.35em;
}

.bb-content-block p {
    margin-bottom: 0.9em;
}

.bb-content-block ul, .bb-content-block ol {
    margin-bottom: 0.9em;
}

.bb-content-block table {
    margin: 1em 0;
}

.bb-content-block a {
    color: var(--bb-dark);
    font-weight: 600;
    text-decoration: underline;
}

.bb-content-block a:hover {
    color: #FBD000;
}

.bb-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.bb-feature-item {
    background: var(--bb-white);
    border-radius: var(--bb-radius);
    padding: 20px;
    box-shadow: var(--bb-shadow);
    text-align: center;
}

.bb-feature-item__icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.bb-feature-item__title {
    font-weight: 700;
    font-size: 0.93rem;
}

.bb-comparison-table th:first-child, .bb-comparison-table td:first-child {
    font-weight: 700;
}

.bb-info-table th {
    min-width: 140px;
}

.bb-download-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.bb-download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bb-dark);
    color: var(--bb-white);
    border-radius: var(--bb-radius-sm);
    padding: 12px 22px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.2s, transform 0.15s;
}

.bb-download-btn:hover {
    background: #3a3936;
    color: var(--bb-yellow);
    transform: translateY(-1px);
}

.bb-download-btn__icon {
    font-size: 1.5rem;
}

.bb-mirror-block {
    background: var(--bb-yellow);
    border-radius: var(--bb-radius);
    padding: 24px 28px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
}

.bb-not-working {
    background: var(--bb-bg);
    border-radius: var(--bb-radius);
    padding: 28px;
    border: 2px solid var(--bb-gray);
}

.bb-not-working h3 {
    margin-bottom: 16px;
}

.bb-not-working__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.bb-breadcrumb {
    font-size: 0.85rem;
    color: var(--bb-gray2);
    padding: 10px 0;
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

.bb-breadcrumb a {
    color: var(--bb-dark);
    text-decoration: none;
}

.bb-breadcrumb a:hover {
    text-decoration: underline;
}

.bb-breadcrumb span {
    color: var(--bb-gray2);
}

.bb-slider-wrap {
    position: relative;
    overflow: hidden;
}

.bb-slider-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px 0 0;
}

.bb-slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--bb-gray);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.bb-slider-dot.active {
    background: var(--bb-dark);
}

.bb-alt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.bb-alt-card {
    background: var(--bb-white);
    border-radius: var(--bb-radius);
    padding: 18px;
    box-shadow: var(--bb-shadow);
    display: flex;
    align-items: center;
    gap: 12px;
}

.bb-alt-card__icon {
    font-size: 2rem;
}

.bb-alt-card__name {
    font-weight: 700;
    font-size: 0.95rem;
}

.bb-alt-card__sub {
    font-size: 0.82rem;
    color: var(--bb-gray2);
}

.bb-reg-bonus {
    background: var(--bb-dark);
    color: var(--bb-white);
    border-radius: var(--bb-radius);
    padding: 32px;
    text-align: center;
}

.bb-reg-bonus h3 {
    color: var(--bb-yellow);
    margin-bottom: 8px;
}

.bb-reg-bonus__amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--bb-yellow);
    margin: 12px 0;
}

.bb-reg-bonus p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.bb-video-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: var(--bb-radius);
    overflow: hidden;
}

.bb-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.bb-tech-content h2 {
    margin-top: 1.5em;
}

.bb-tech-content h3 {
    margin-top: 1.2em;
}

.bb-tech-content p {
    margin-bottom: 0.9em;
}

.bb-tech-content ul, .bb-tech-content ol {
    margin-bottom: 0.9em;
}

.bb-tag-cloud {
    position: absolute;
    overflow: hidden;
    height: 0;
    width: 0;
}

@keyframes bb-fade-in {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bb-animate {
    animation: bb-fade-in 0.5s ease both;
}

.bb-gap-sm {
    gap: 12px;
}

.bb-mt-sm {
    margin-top: 16px;
}

.bb-mt {
    margin-top: 28px;
}

.bb-mb {
    margin-bottom: 28px;
}

.bb-text-center {
    text-align: center;
}

.bb-flex {
    display: flex;
}

.bb-flex-wrap {
    flex-wrap: wrap;
}

.bb-items-center {
    align-items: center;
}

.bb-justify-between {
    justify-content: space-between;
}

.bb-gap {
    gap: 20px;
}

@media (max-width: 900px) {
    .bb-header__nav {
        display: none;
    }

    .bb-burger {
        display: flex;
    }

    .bb-hero__slide-inner {
        flex-direction: column;
    }

    .bb-hero__img {
        display: none;
    }

    .bb-footer__top {
        flex-direction: column;
        gap: 20px;
    }

    .bb-advantages {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
}

@media (max-width: 600px) {
    .bb-box {
        padding: 18px;
    }

    .bb-promo-block {
        flex-direction: column;
    }

    .bb-bonuses-grid {
        grid-template-columns: 1fr;
    }

    .bb-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bb-widget {
        flex-wrap: wrap;
        gap: 8px;
    }

    .bb-not-working__btns {
        flex-direction: column;
    }

    .bb-download-btns {
        flex-direction: column;
    }

    .bb-author {
        flex-direction: column;
    }

    .bb-reg-bonus__amount {
        font-size: 1.8rem;
    }
}

.bb-wp-compat {
    display: none;
}

.bb-hidden-el {
    visibility: hidden;
    position: absolute;
    height: 0;
    overflow: hidden;
}

.bb-e7f2 {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.x9k3m {
    height: 0;
    overflow: hidden;
}
