@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600&family=Rubik:wght@400;500;700&family=Fredoka:wght@400;500;600;700&display=swap');

:root {
    --clr-header: #054863;
    --clr-btn-blue: #00B4FF;
    --clr-btn-yellow: #FEE900;
    --clr-bg: #252831;
    --clr-bg-card: #1e2129;
    --clr-bg-card2: #2d3240;
    --clr-text: #e8eaf0;
    --clr-text-muted: #9ba3b8;
    --clr-border: #3a3f52;
    --clr-plus: #22c55e;
    --clr-minus: #ef4444;
    --clr-accent: #00B4FF;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
    --transition: 0.22s cubic-bezier(.4, 0, .2, 1);
    --font-main: 'Poppins', 'Inter', 'Rubik', sans-serif;
    --font-brand: 'Fredoka', 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--clr-btn-blue);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: #fff;
}

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

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

.bbb-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bbb-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== HEADER ===== */
.bbb-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

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

.bbb-header__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.bbb-header__logo img {
    height: 46px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 180, 255, 0.3));
}

.bbb-header__logo-text {
    font-family: var(--font-brand);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.bbb-header__logo-text span {
    color: var(--clr-btn-yellow);
}

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

.bbb-nav__list {
    display: flex;
    list-style: none;
    gap: 2px;
    align-items: center;
}

.bbb-nav__link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.bbb-nav__link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.bbb-nav__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.bbb-header__right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.bbb-online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 180, 255, 0.12);
    border: 1px solid rgba(0, 180, 255, 0.28);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 0.78rem;
    color: var(--clr-btn-blue);
    white-space: nowrap;
}

.bbb-online-badge__dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    animation: bbb-pulse 1.6s infinite;
}

@keyframes bbb-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

.bbb-lang-dropdown {
    position: relative;
}

.bbb-lang-dropdown__btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.84rem;
    font-weight: 500;
    transition: background var(--transition);
}

.bbb-lang-dropdown__btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.bbb-lang-dropdown__arrow {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
}

.bbb-lang-dropdown.open .bbb-lang-dropdown__arrow {
    transform: rotate(180deg);
}

.bbb-lang-dropdown__menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #1a2235;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    min-width: 140px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 100;
}

.bbb-lang-dropdown.open .bbb-lang-dropdown__menu {
    display: flex;
}

.bbb-lang-dropdown__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    color: var(--clr-text);
    font-size: 0.86rem;
    transition: background var(--transition);
    cursor: pointer;
}

.bbb-lang-dropdown__item:hover {
    background: rgba(255, 255, 255, 0.07);
}

.bbb-lang-dropdown__item.active {
    color: var(--clr-btn-blue);
}

.bbb-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    white-space: nowrap;
    line-height: 1;
}

.bbb-btn:hover {
    transform: translateY(-2px);
}

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

.bbb-btn--demo {
    background: var(--clr-btn-blue);
    color: #fff;
    box-shadow: 0 4px 18px rgba(0, 180, 255, 0.35);
}

.bbb-btn--demo:hover {
    box-shadow: 0 6px 24px rgba(0, 180, 255, 0.5);
    filter: brightness(1.1);
    color: #fff;
}

.bbb-btn--play {
    background: var(--clr-btn-yellow);
    color: #1a1204;
    box-shadow: 0 4px 18px rgba(254, 233, 0, 0.35);
}

.bbb-btn--play:hover {
    box-shadow: 0 6px 24px rgba(254, 233, 0, 0.5);
    filter: brightness(1.08);
    color: #1a1204;
}

.bbb-btn--lg {
    padding: 14px 32px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

.bbb-btn--outline {
    background: transparent;
    border: 2px solid var(--clr-btn-blue);
    color: var(--clr-btn-blue);
}

.bbb-btn--outline:hover {
    background: var(--clr-btn-blue);
    color: #fff;
}

.bbb-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.bbb-burger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.bbb-burger__line {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

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

.bbb-burger.active .bbb-burger__line:nth-child(2) {
    opacity: 0;
}

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

.bbb-mobile-menu {
    display: none;
    flex-direction: column;
    background: #04384f;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 20px;
    gap: 6px;
}

.bbb-mobile-menu.active {
    display: flex;
}

.bbb-mobile-menu .bbb-nav__link {
    padding: 10px 14px;
    font-size: 0.95rem;
}

/* ===== HERO ===== */
.bbb-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #062d42 0%, #073d58 40%, #0a5070 100%);
}

.bbb-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/banner-bass-bonanza.png');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    z-index: 0;
}

.bbb-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 30, 50, 0.95) 0%, rgba(5, 40, 65, 0.75) 55%, rgba(5, 40, 65, 0.25) 100%);
    z-index: 1;
}

.bbb-hero__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 20px;
}

.bbb-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 180, 255, 0.15);
    border: 1px solid rgba(0, 180, 255, 0.4);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.8rem;
    color: var(--clr-btn-blue);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.bbb-hero__title {
    font-family: var(--font-brand);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
}

.bbb-hero__title span {
    color: var(--clr-btn-yellow);
}

.bbb-hero__desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
    line-height: 1.7;
}

.bbb-hero__stats {
    display: flex;
    gap: 24px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.bbb-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bbb-hero__stat-val {
    font-family: var(--font-brand);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-btn-yellow);
    line-height: 1;
}

.bbb-hero__stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bbb-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.bbb-hero__visual {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 40px;
}

.bbb-hero__img {
    max-height: 420px;
    width: auto;
    filter: drop-shadow(0 8px 48px rgba(0, 180, 255, 0.3));
    animation: bbb-float 3.5s ease-in-out infinite;
}

@keyframes bbb-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-16px);
    }
}

/* ===== SECTION ===== */
.bbb-section {
    padding: 56px 0;
}

.bbb-section--alt {
    background: rgba(255, 255, 255, 0.02);
}

.bbb-section__title {
    font-family: var(--font-brand);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}

.bbb-section__title span {
    color: var(--clr-btn-blue);
}

.bbb-section__subtitle {
    text-align: center;
    color: var(--clr-text-muted);
    font-size: 0.96rem;
    margin-bottom: 36px;
}

.bbb-section__head {
    margin-bottom: 36px;
}

/* ===== PROS/CONS ===== */
.bbb-proscons {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.bbb-proscons__col {
    flex: 1;
    background: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow);
}

.bbb-proscons__col--pros {
    border-top: 3px solid var(--clr-plus);
}

.bbb-proscons__col--cons {
    border-top: 3px solid var(--clr-minus);
}

.bbb-proscons__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-family: var(--font-brand);
    font-size: 1.15rem;
    font-weight: 700;
}

.bbb-proscons__col--pros .bbb-proscons__head {
    color: var(--clr-plus);
}

.bbb-proscons__col--cons .bbb-proscons__head {
    color: var(--clr-minus);
}

.bbb-proscons__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bbb-proscons__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.93rem;
    color: var(--clr-text);
    line-height: 1.55;
}

.bbb-proscons__item::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-top: 2px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.bbb-proscons__col--pros .bbb-proscons__item::before {
    background-color: rgba(34, 197, 94, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2322c55e'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
}

.bbb-proscons__col--cons .bbb-proscons__item::before {
    background-color: rgba(239, 68, 68, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23ef4444'%3E%3Cpath fill-rule='evenodd' d='M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
}

/* ===== SCREENSHOTS ===== */
.bbb-screenshots {
    display: flex;
    gap: 16px;
}

.bbb-screenshots__item {
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow);
    position: relative;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}

.bbb-screenshots__item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 48px rgba(0, 180, 255, 0.2);
}

.bbb-screenshots__item img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    transition: filter var(--transition);
}

.bbb-screenshots__item:hover img {
    filter: brightness(1.1);
}

.bbb-screenshots__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.bbb-screenshots__item:hover .bbb-screenshots__overlay {
    background: rgba(0, 40, 70, 0.45);
}

.bbb-screenshots__play {
    opacity: 0;
    transform: scale(0.7);
    transition: opacity var(--transition), transform var(--transition);
    color: #fff;
    font-size: 2rem;
}

.bbb-screenshots__item:hover .bbb-screenshots__play {
    opacity: 1;
    transform: scale(1);
}

/* Swiper mobile */
.bbb-swiper {
    position: relative;
    overflow: hidden;
}

.bbb-swiper__track {
    display: flex;
    transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

.bbb-swiper__slide {
    min-width: 100%;
    flex-shrink: 0;
}

.bbb-swiper__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
}

.bbb-swiper__btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    font-size: 1rem;
}

.bbb-swiper__btn:hover {
    background: rgba(0, 180, 255, 0.3);
}

.bbb-swiper__dots {
    display: flex;
    gap: 6px;
}

.bbb-swiper__dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.bbb-swiper__dot.active {
    background: var(--clr-btn-blue);
    transform: scale(1.3);
}

/* ===== VIDEO ===== */
.bbb-video-block {
    background: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow);
}

.bbb-video-block__header {
    padding: 20px 24px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bbb-video-block__title {
    font-family: var(--font-brand);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
}

.bbb-video-block__tabs {
    display: flex;
    gap: 8px;
    padding: 16px 24px;
    flex-wrap: wrap;
}

.bbb-video-block__tab {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--clr-text-muted);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all var(--transition);
}

.bbb-video-block__tab:hover,
.bbb-video-block__tab.active {
    background: var(--clr-btn-blue);
    border-color: var(--clr-btn-blue);
    color: #fff;
}

.bbb-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

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

/* ===== DEMO GAME ===== */
.bbb-demo-block {
    background: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow);
}

.bbb-demo-block__header {
    background: var(--clr-header);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.bbb-demo-block__title {
    font-family: var(--font-brand);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bbb-demo-block__actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.bbb-demo-wrap {
    position: relative;
    padding-bottom: 60%;
    height: 0;
    overflow: hidden;
    background: #0a1520;
}

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

.bbb-demo-wrap__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, #061c2e 0%, #0a2d46 100%);
}

.bbb-demo-wrap__placeholder-logo {
    width: 100px;
    opacity: 0.8;
    filter: drop-shadow(0 4px 16px rgba(0, 180, 255, 0.4));
}

.bbb-demo-wrap__placeholder-text {
    font-family: var(--font-brand);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== GAME INFO TABLE ===== */
.bbb-info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    margin: 0 auto;
    text-align: left;
}

.bbb-info-table th,
.bbb-info-table td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--clr-border);
    font-size: 0.9rem;
}

.bbb-info-table th {
    background: rgba(0, 180, 255, 0.08);
    color: var(--clr-btn-blue);
    font-weight: 600;
    width: 40%;
}

.bbb-info-table td {
    color: var(--clr-text);
}

.bbb-info-table tr:last-child th,
.bbb-info-table tr:last-child td {
    border-bottom: none;
}

.bbb-info-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.bbb-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

/* ===== FAQ ===== */
.bbb-faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 860px;
    margin: 0 auto;
}

.bbb-faq__item {
    background: var(--clr-bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    overflow: hidden;
    transition: border-color var(--transition);
}

.bbb-faq__item.open {
    border-color: var(--clr-btn-blue);
}

.bbb-faq__question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    text-align: left;
    padding: 18px 22px;
    font-size: 0.97rem;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: color var(--transition);
}

.bbb-faq__question:hover {
    color: var(--clr-btn-blue);
}

.bbb-faq__item.open .bbb-faq__question {
    color: var(--clr-btn-blue);
}

.bbb-faq__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: rgba(0, 180, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), background var(--transition);
}

.bbb-faq__item.open .bbb-faq__icon {
    transform: rotate(180deg);
    background: rgba(0, 180, 255, 0.25);
}

.bbb-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(.4, 0, .2, 1), padding var(--transition);
    padding: 0 22px;
    color: var(--clr-text-muted);
    font-size: 0.93rem;
    line-height: 1.7;
}

.bbb-faq__item.open .bbb-faq__answer {
    max-height: 400px;
    padding: 0 22px 18px;
}

/* ===== CONTENT (обзорный блок) ===== */
.bbb-content-block {
    background: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow);
    line-height: 1.75;
}

.bbb-content-block h2 {
    font-family: var(--font-brand);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px;
}

.bbb-content-block h3 {
    font-family: var(--font-brand);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--clr-btn-blue);
    margin: 22px 0 10px;
}

.bbb-content-block p {
    color: var(--clr-text);
    margin-bottom: 14px;
    font-size: 0.97rem;
}

.bbb-content-block ul,
.bbb-content-block ol {
    margin: 10px 0 16px 22px;
    color: var(--clr-text);
    font-size: 0.97rem;
}

.bbb-content-block li {
    margin-bottom: 7px;
    line-height: 1.65;
}

.bbb-content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.9rem;
    text-align: left;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.bbb-content-block table th {
    background: rgba(0, 180, 255, 0.1);
    color: var(--clr-btn-blue);
    padding: 10px 14px;
    border-bottom: 1px solid var(--clr-border);
    font-weight: 600;
}

.bbb-content-block table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--clr-border);
    color: var(--clr-text);
}

.bbb-content-block table tr:last-child td {
    border-bottom: none;
}

.bbb-content-block a {
    color: var(--clr-btn-blue);
    text-decoration: underline;
}

/* ===== AUTHOR ===== */
.bbb-author {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--clr-bg-card2);
    border-radius: var(--radius-lg);
    padding: 24px 26px;
    border: 1px solid var(--clr-border);
    border-left: 4px solid var(--clr-btn-blue);
}

.bbb-author__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--clr-btn-blue);
    background: var(--clr-header);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-brand);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-btn-yellow);
    overflow: hidden;
}

.bbb-author__info {
    flex: 1;
}

.bbb-author__name {
    font-family: var(--font-brand);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.bbb-author__role {
    font-size: 0.82rem;
    color: var(--clr-btn-blue);
    font-weight: 600;
    margin-bottom: 8px;
}

.bbb-author__bio {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.bbb-author__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 0.84rem;
    color: var(--clr-btn-blue);
    text-decoration: none;
    transition: color var(--transition);
}

.bbb-author__link:hover {
    color: #fff;
}

/* ===== REVIEWS ===== */
.bbb-reviews {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bbb-review {
    background: var(--clr-bg-card);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow);
    transition: border-color var(--transition);
}

.bbb-review:hover {
    border-color: rgba(0, 180, 255, 0.35);
}

.bbb-review__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.bbb-review__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--clr-header);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-brand);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-btn-yellow);
    flex-shrink: 0;
}

.bbb-review__meta {
    flex: 1;
}

.bbb-review__name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
}

.bbb-review__date {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
}

.bbb-review__stars {
    color: var(--clr-btn-yellow);
    font-size: 1rem;
    letter-spacing: 2px;
}

.bbb-review__text {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ===== CASINOS ===== */
.bbb-casinos {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bbb-casino-card {
    background: var(--clr-bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.bbb-casino-card:hover {
    border-color: rgba(254, 233, 0, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.bbb-casino-card__rank {
    width: 36px;
    height: 36px;
    background: var(--clr-header);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-brand);
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-btn-yellow);
    flex-shrink: 0;
}

.bbb-casino-card__logo {
    width: 70px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.bbb-casino-card__info {
    flex: 1;
}

.bbb-casino-card__name {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 4px;
}

.bbb-casino-card__bonus {
    font-size: 0.88rem;
    color: var(--clr-btn-yellow);
    font-weight: 600;
}

.bbb-casino-card__meta {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.bbb-casino-card__tag {
    font-size: 0.76rem;
    background: rgba(0, 180, 255, 0.12);
    color: var(--clr-btn-blue);
    padding: 2px 8px;
    border-radius: 10px;
}

.bbb-casino-card__rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.bbb-casino-card__score {
    font-family: var(--font-brand);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-plus);
}

.bbb-casino-card__stars {
    color: var(--clr-btn-yellow);
    font-size: 0.78rem;
}

/* ===== FEATURES GRID ===== */
.bbb-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bbb-feature-card {
    background: var(--clr-bg-card);
    border-radius: var(--radius-md);
    padding: 22px 20px;
    border: 1px solid var(--clr-border);
    text-align: center;
    transition: transform var(--transition), border-color var(--transition);
}

.bbb-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 180, 255, 0.35);
}

.bbb-feature-card__icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.bbb-feature-card__title {
    font-family: var(--font-brand);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.bbb-feature-card__text {
    font-size: 0.86rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.bbb-footer {
    background: var(--clr-header);
    margin-top: auto;
    padding: 48px 0 24px;
}

.bbb-footer__top {
    display: flex;
    gap: 40px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.bbb-footer__brand {
    flex: 0 0 240px;
}

.bbb-footer__logo {
    display: block;
    margin-bottom: 14px;
}

.bbb-footer__logo img {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 180, 255, 0.3));
}

.bbb-footer__desc {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    margin-bottom: 16px;
}

.bbb-footer__cols {
    display: flex;
    gap: 40px;
    flex: 1;
    flex-wrap: wrap;
}

.bbb-footer__col {
    flex: 1;
    min-width: 120px;
}

.bbb-footer__col-title {
    font-family: var(--font-brand);
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

.bbb-footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bbb-footer__links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.86rem;
    transition: color var(--transition);
}

.bbb-footer__links a:hover {
    color: var(--clr-btn-blue);
}

.bbb-footer__divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 24px 0;
}

.bbb-footer__logos {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.bbb-footer__logos-title {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-right: 4px;
}

.bbb-footer__payment-logo,
.bbb-footer__trust-logo {
    height: 26px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.45;
    transition: opacity var(--transition);
}

.bbb-footer__payment-logo:hover,
.bbb-footer__trust-logo:hover {
    opacity: 0.8;
}

.bbb-footer__provider {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bbb-footer__provider img {
    height: 30px;
    width: auto;
    opacity: 0.55;
    filter: brightness(0) invert(1);
    transition: opacity var(--transition);
}

.bbb-footer__provider img:hover {
    opacity: 0.85;
}

.bbb-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bbb-footer__copyright {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    line-height: 1.55;
}

.bbb-footer__legal {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    line-height: 1.6;
    max-width: 760px;
    margin: 0 auto;
}

.bbb-footer__age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(239, 68, 68, 0.25);
    border: 1.5px solid rgba(239, 68, 68, 0.5);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    color: #ef4444;
    margin: 0 auto 10px;
    display: block;
    text-align: center;
    line-height: 26px;
}

.bbb-tech-content {
    max-width: 860px;
    margin: 0 auto;
}

.bbb-tech-content h2 {
    font-family: var(--font-brand);
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px;
}

.bbb-tech-content h3 {
    font-family: var(--font-brand);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--clr-btn-blue);
    margin: 20px 0 8px;
}

.bbb-tech-content p {
    color: var(--clr-text-muted);
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.bbb-tech-content ul,
.bbb-tech-content ol {
    margin: 8px 0 14px 22px;
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.bbb-tech-content li {
    margin-bottom: 6px;
    line-height: 1.6;
}

/* ===== BREADCRUMB ===== */
.bbb-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    font-size: 0.84rem;
    color: var(--clr-text-muted);
}

.bbb-breadcrumb a {
    color: var(--clr-btn-blue);
}

.bbb-breadcrumb span {
    color: rgba(255, 255, 255, 0.3);
}

/* ===== UTILS ===== */
.bbb-gap-sm {
    gap: 12px;
}

.bbb-mt-1 {
    margin-top: 12px;
}

.bbb-mt-2 {
    margin-top: 24px;
}

.bbb-mt-3 {
    margin-top: 36px;
}

.bbb-mb-1 {
    margin-bottom: 12px;
}

.bbb-mb-2 {
    margin-bottom: 24px;
}

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

.bbb-flex {
    display: flex;
}

.bbb-flex-col {
    flex-direction: column;
}

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

.bbb-justify-center {
    justify-content: center;
}

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

.bbb-gap-md {
    gap: 16px;
}

.bbb-gap-lg {
    gap: 24px;
}

.bbb-badge {
    display: inline-block;
    background: rgba(0, 180, 255, 0.12);
    border: 1px solid rgba(0, 180, 255, 0.3);
    color: var(--clr-btn-blue);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 10px;
    letter-spacing: 0.04em;
}

.bbb-badge--yellow {
    background: rgba(254, 233, 0, 0.12);
    border-color: rgba(254, 233, 0, 0.35);
    color: var(--clr-btn-yellow);
}

.bbb-divider {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 32px 0;
}

/* Fade-in animation */
.bbb-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.bbb-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Unused elements for uniqualization */
.mbx-7f3a9 {
    display: none;
}

.mb-9d2c1-track {
    pointer-events: none;
    opacity: 0;
    position: absolute;
}

.bbb-dummy-el {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .bbb-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .bbb-hero__visual {
        width: 38%;
    }
}

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

    .bbb-burger {
        display: flex;
    }

    .bbb-online-badge {
        display: none;
    }

    .bbb-lang-dropdown {
        display: none;
    }

    .bbb-hero {
        min-height: 420px;
    }

    .bbb-hero__visual {
        display: none;
    }

    .bbb-hero__content {
        padding: 40px 20px;
        max-width: 100%;
    }

    .bbb-hero__stats {
        gap: 16px;
    }

    .bbb-proscons {
        flex-direction: column;
    }

    .bbb-screenshots {
        display: none;
    }

    .bbb-screenshots--mobile {
        display: block !important;
    }

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

    .bbb-casino-card {
        flex-wrap: wrap;
    }

    .bbb-casino-card__logo {
        width: 55px;
    }

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

    .bbb-footer__top {
        flex-direction: column;
        gap: 28px;
    }

    .bbb-footer__brand {
        flex: none;
    }

    .bbb-footer__cols {
        gap: 24px;
    }

    .bbb-widget {
        padding: 10px 14px;
    }

    .bbb-widget__text {
        font-size: 0.84rem;
    }

    .bbb-section {
        padding: 36px 0;
    }
}

@media (max-width: 480px) {
    .bbb-features {
        grid-template-columns: 1fr;
    }

    .bbb-hero__title {
        font-size: 1.7rem;
    }

    .bbb-btn--lg {
        padding: 12px 22px;
        font-size: 0.95rem;
    }

    .bbb-footer__cols {
        flex-direction: column;
    }

    .bbb-demo-wrap {
        padding-bottom: 75%;
    }
}

/* WP-compat hidden layer */
#wpadminbar {
    display: none !important;
}

.wp-block {
    box-sizing: inherit;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    word-wrap: normal;
}

.entry-content {
    margin: 0;
}

.elementor-widget-container {
    margin-bottom: 0;
}

.uytrs {
    max-width: 920px;
    margin: 48px auto;
    padding: 36px 32px;
    background: linear-gradient(180deg, #0d3044, #0a1e2c);
    border: 1px solid rgba(0, 180, 255, 0.18);
    border-radius: 14px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.uytrs p,
.uytrs li {
    word-break: break-word;
    overflow-wrap: anywhere;
}

.uytrs a {
    display: inline-block;
    max-width: 100%;
    color: #00B4FF;
    font-weight: 600;
    word-break: break-all;
    overflow-wrap: anywhere;
}

@media (max-width: 768px) {
    .uytrs {
        margin: 24px 12px;
        padding: 20px 16px;
    }

    .uytrs p,
    .uytrs li {
        font-size: 14px;
        line-height: 1.65;
    }

    .uytrs a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .uytrs {
        margin: 20px 10px;
        padding: 16px 14px;
    }

    .uytrs a {
        font-size: 13.5px;
    }
}

@media (max-width: 768px) {
    .bbb-screenshots {
        display: none;
    }

    .bbb-screenshots--mobile {
        display: block !important;
        margin-top: 10px;
    }

    .bbb-swiper {
        overflow: hidden;
        border-radius: 14px;
    }

    .bbb-swiper__track {
        display: flex;
        transition: transform 0.35s ease;
    }

    .bbb-swiper__slide {
        min-width: 100%;
        padding: 0 6px;
    }

    .bbb-screenshots__item {
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .bbb-screenshots__item img {
        width: 100%;
        height: auto;
        aspect-ratio: 16/10;
        object-fit: cover;
        display: block;
    }

    .bbb-swiper__controls {
        margin-top: 12px;
        gap: 12px;
    }

    .bbb-swiper__btn {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .bbb-swiper__dot {
        width: 7px;
        height: 7px;
    }
}

@media (max-width: 480px) {
    .bbb-swiper__slide {
        padding: 0 4px;
    }

    .bbb-swiper__btn {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 768px) {
    .bbb-swiper__slide {
        min-width: 80%;
        padding: 0 6px;
    }

    .bbb-swiper__track {
        gap: 10px;
        padding-left: 10px;
    }

    .bbb-screenshots__item img {
        aspect-ratio: 16/10;
        max-height: 180px;
    }
}

@media (max-width: 480px) {
    .bbb-swiper__slide {
        min-width: 85%;
    }

    .bbb-screenshots__item img {
        max-height: 150px;
    }
}