:root {
  --bb-bg: #0d140d;
  --bb-nav: #1b2b1b;
  --bb-nav-border: #2a3f2a;
  --bb-green: #4caf50;
  --bb-green-hover: #43a047;
  --bb-yellow: #ffc107;
  --bb-yellow-hover: #ffb300;
  --bb-text: #e8f5e9;
  --bb-text-muted: #a5c8a7;
  --bb-text-dark: #1b2b1b;
  --bb-card: #152015;
  --bb-card-border: #2a3f2a;
  --bb-gold: #ffd54f;
  --bb-red: #ef5350;
  --bb-radius: 12px;
  --bb-radius-sm: 8px;
  --bb-shadow: 0 4px 24px rgba(0,0,0,0.45);
  --bb-transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  background: var(--bb-bg);
  color: var(--bb-text);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--bb-green); text-decoration: none; transition: color var(--bb-transition); }
a:hover { color: var(--bb-yellow); }
ul, ol { padding-left: 0; list-style: none; }

.bb-wrap { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
.bb-container { width: 100%; }

.bb-header {
  background: var(--bb-nav);
  border-bottom: 1px solid var(--bb-nav-border);
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.bb-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  max-width: 1280px;
  margin: 0 auto;
}
.bb-header__logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.bb-header__logo span {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--bb-green);
  letter-spacing: 0.5px;
}
.bb-header__logo span em {
  color: var(--bb-yellow);
  font-style: normal;
}

.bb-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  flex-wrap: wrap;
}
.bb-nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: var(--bb-radius-sm);
  color: var(--bb-text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  transition: background var(--bb-transition), color var(--bb-transition);
  white-space: nowrap;
}
.bb-nav__link:hover { background: rgba(76,175,80,0.12); color: var(--bb-green); }
.bb-nav__link svg { width: 15px; height: 15px; flex-shrink: 0; }

.bb-header__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bb-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--bb-text-muted);
  white-space: nowrap;
}
.bb-online__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bb-green);
  box-shadow: 0 0 0 0 rgba(76,175,80,0.5);
  animation: bb-pulse 1.8s infinite;
  flex-shrink: 0;
}
@keyframes bb-pulse {
  0% { box-shadow: 0 0 0 0 rgba(76,175,80,0.5); }
  70% { box-shadow: 0 0 0 7px rgba(76,175,80,0); }
  100% { box-shadow: 0 0 0 0 rgba(76,175,80,0); }
}

.bb-lang {
  position: relative;
}
.bb-lang__btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--bb-nav-border);
  border-radius: var(--bb-radius-sm);
  padding: 6px 10px;
  cursor: pointer;
  color: var(--bb-text);
  font-size: 0.8rem;
  font-weight: 600;
  transition: background var(--bb-transition);
}
.bb-lang__btn:hover { background: rgba(76,175,80,0.15); }
.bb-lang__dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: var(--bb-nav);
  border: 1px solid var(--bb-nav-border);
  border-radius: var(--bb-radius-sm);
  min-width: 130px;
  display: none;
  flex-direction: column;
  box-shadow: var(--bb-shadow);
  z-index: 999;
  overflow: hidden;
}
.bb-lang__dropdown.is-open { display: flex; }
.bb-lang__option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 0.82rem;
  color: var(--bb-text-muted);
  cursor: pointer;
  transition: background var(--bb-transition);
}
.bb-lang__option:hover { background: rgba(76,175,80,0.12); color: var(--bb-green); }
.bb-lang__option.active { color: var(--bb-green); font-weight: 700; }

.bb-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--bb-radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background var(--bb-transition), transform var(--bb-transition), box-shadow var(--bb-transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.bb-btn:active { transform: scale(0.97); }
.bb-btn--green {
  background: var(--bb-green);
  color: #fff;
}
.bb-btn--green:hover { background: var(--bb-green-hover); color: #fff; box-shadow: 0 4px 16px rgba(76,175,80,0.4); }
.bb-btn--yellow {
  background: var(--bb-yellow);
  color: var(--bb-text-dark);
}
.bb-btn--yellow:hover { background: var(--bb-yellow-hover); color: var(--bb-text-dark); box-shadow: 0 4px 16px rgba(255,193,7,0.4); }
.bb-btn--outline {
  background: transparent;
  border: 2px solid var(--bb-green);
  color: var(--bb-green);
}
.bb-btn--outline:hover { background: var(--bb-green); color: #fff; }
.bb-btn--lg { padding: 13px 28px; font-size: 1rem; border-radius: var(--bb-radius); }
.bb-btn--sm { padding: 6px 13px; font-size: 0.78rem; }
.bb-btn--block { width: 100%; justify-content: center; }

.bb-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.bb-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--bb-text);
  border-radius: 2px;
  transition: transform var(--bb-transition), opacity var(--bb-transition);
}
.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-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url('/banner.jpg') center center/cover no-repeat;
}
.bb-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,20,13,0.92) 0%, rgba(13,20,13,0.55) 60%, rgba(13,20,13,0.2) 100%);
}
.bb-hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 60px 24px 60px;
}
.bb-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(76,175,80,0.18);
  border: 1px solid var(--bb-green);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bb-green);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bb-hero__title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}
.bb-hero__title span { color: var(--bb-yellow); }
.bb-hero__desc {
  font-size: 1rem;
  color: var(--bb-text-muted);
  margin-bottom: 28px;
  line-height: 1.65;
  max-width: 500px;
}
.bb-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.bb-hero__stats {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.bb-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bb-hero__stat-val {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--bb-yellow);
  line-height: 1;
}
.bb-hero__stat-lbl {
  font-size: 0.73rem;
  color: var(--bb-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* ===== BREADCRUMBS ===== */
.bb-breadcrumbs {
  background: var(--bb-nav);
  border-bottom: 1px solid var(--bb-nav-border);
  padding: 10px 0;
}
.bb-breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
.bb-breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--bb-text-muted);
}
.bb-breadcrumbs__item a { color: var(--bb-text-muted); }
.bb-breadcrumbs__item a:hover { color: var(--bb-green); }
.bb-breadcrumbs__sep { color: var(--bb-nav-border); }
.bb-breadcrumbs__item.current { color: var(--bb-text); font-weight: 600; }

/* ===== SECTION TITLES ===== */
.bb-section {
  padding: 60px 0;
}
.bb-section--sm { padding: 36px 0; }

.bb-section__title {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.bb-section__subtitle {
  font-size: 0.9rem;
  color: var(--bb-text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}
.bb-section__head { margin-bottom: 32px; }
.bb-section__head--center { text-align: center; }

.bb-tag {
  display: inline-block;
  background: rgba(76,175,80,0.13);
  border: 1px solid rgba(76,175,80,0.3);
  color: var(--bb-green);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

/* ===== CASINO RATING ===== */
.bb-rating-list { display: grid; gap: 16px; }

.bb-casino-card {
  background: var(--bb-card);
  border: 1px solid var(--bb-card-border);
  border-radius: var(--bb-radius);
  padding: 20px;
  transition: border-color var(--bb-transition), box-shadow var(--bb-transition), transform var(--bb-transition);
  position: relative;
  overflow: hidden;
}
.bb-casino-card:hover {
  border-color: var(--bb-green);
  box-shadow: 0 6px 32px rgba(76,175,80,0.18);
  transform: translateY(-2px);
}

.bb-casino-card--top3 {
  border-color: var(--bb-yellow);
  background: linear-gradient(135deg, #1a2e1a 0%, #152015 100%);
}
.bb-casino-card--top3:hover { border-color: var(--bb-yellow); box-shadow: 0 6px 32px rgba(255,193,7,0.2); }

.bb-casino-card--no1 { border-color: #ffd700; }
.bb-casino-card--no1::before {
  content: 'ТОП #1';
  position: absolute;
  top: 14px;
  right: -28px;
  background: linear-gradient(90deg, #ffd700, #ff8f00);
  color: #1b2b1b;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 36px;
  transform: rotate(45deg);
  letter-spacing: 0.5px;
}

.bb-casino-card__inner {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  align-items: start;
}
.bb-casino-card__num {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bb-nav);
  border: 2px solid var(--bb-nav-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--bb-text-muted);
}
.bb-casino-card--top3 .bb-casino-card__num { border-color: var(--bb-yellow); color: var(--bb-yellow); }

.bb-casino-card__logo {
  width: 70px; height: 70px;
  border-radius: 10px;
  background: #1f311f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.65rem;
  color: var(--bb-text-muted);
  text-align: center;
  border: 1px solid var(--bb-card-border);
  overflow: hidden;
  object-fit: contain;
  padding: 4px;
  margin-top: 8px;
}
.bb-casino-card__logo img { width: 100%; height: 100%; object-fit: contain; }

.bb-casino-card__info { flex: 1; }
.bb-casino-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.bb-casino-card__name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}
.bb-casino-card__flag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--bb-green);
  font-weight: 600;
  background: rgba(76,175,80,0.1);
  border-radius: 4px;
  padding: 2px 7px;
}
.bb-casino-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 4px;
}
.bb-casino-card__star { color: var(--bb-yellow); font-size: 0.85rem; }
.bb-casino-card__star--empty { color: #2a3f2a; }
.bb-casino-card__score {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--bb-yellow);
  margin-left: 4px;
}

.bb-casino-card__bonus {
  display: inline-block;
  background: linear-gradient(90deg, rgba(255,193,7,0.15), rgba(255,193,7,0.06));
  border: 1px solid rgba(255,193,7,0.3);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--bb-yellow);
  margin-bottom: 10px;
}

.bb-casino-card__meta {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 6px;
  margin-bottom: 12px;
}
.bb-casino-card__meta-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.bb-casino-card__meta-lbl {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--bb-text-muted);
  font-weight: 600;
}
.bb-casino-card__meta-val {
  font-size: 0.82rem;
  color: var(--bb-text);
  font-weight: 600;
}

.bb-casino-card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* ===== PAGINATION ===== */
.bb-pagination {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.bb-load-more {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  background: rgba(76,175,80,0.1);
  border: 1px solid var(--bb-green);
  border-radius: var(--bb-radius);
  color: var(--bb-green);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--bb-transition), transform var(--bb-transition);
}
.bb-load-more:hover { background: rgba(76,175,80,0.2); transform: translateY(-1px); }
.bb-load-more.hidden { display: none; }

/* ===== GAME INFO TABLE ===== */
.bb-table-wrap { overflow-x: auto; border-radius: var(--bb-radius); }
.bb-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bb-card);
  border-radius: var(--bb-radius);
  overflow: hidden;
  font-size: 0.88rem;
}
.bb-table th, .bb-table td {
  padding: 13px 18px;
  text-align: left;
  border-bottom: 1px solid var(--bb-card-border);
}
.bb-table th {
  background: var(--bb-nav);
  color: var(--bb-text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 700;
  white-space: nowrap;
}
.bb-table td { color: var(--bb-text); }
.bb-table td:first-child { color: var(--bb-text-muted); font-weight: 600; font-size: 0.82rem; }
.bb-table td:last-child { color: #fff; font-weight: 700; }
.bb-table tr:last-child td { border-bottom: none; }
.bb-table tr:hover td { background: rgba(76,175,80,0.05); }

/* ===== ADVANTAGES ===== */
.bb-advantages {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.bb-advantage-card {
  background: var(--bb-card);
  border: 1px solid var(--bb-card-border);
  border-radius: var(--bb-radius);
  padding: 24px 20px;
  transition: border-color var(--bb-transition), transform var(--bb-transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bb-advantage-card:hover { border-color: var(--bb-green); transform: translateY(-2px); }
.bb-advantage-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(76,175,80,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bb-advantage-card__icon svg { width: 26px; height: 26px; color: var(--bb-green); }
.bb-advantage-card__title { font-size: 0.95rem; font-weight: 700; color: #fff; }
.bb-advantage-card__desc { font-size: 0.82rem; color: var(--bb-text-muted); line-height: 1.55; }

/* ===== APP BLOCK ===== */
.bb-app {
  background: var(--bb-card);
  border: 1px solid var(--bb-card-border);
  border-radius: var(--bb-radius);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.bb-app__title { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.bb-app__desc { font-size: 0.85rem; color: var(--bb-text-muted); line-height: 1.6; margin-bottom: 20px; }
.bb-app__btns { display: flex; gap: 10px; flex-wrap: wrap; }
.bb-app__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bb-nav);
  border: 1px solid var(--bb-nav-border);
  border-radius: var(--bb-radius-sm);
  padding: 10px 16px;
  color: var(--bb-text);
  font-size: 0.8rem;
  font-weight: 600;
  transition: border-color var(--bb-transition), background var(--bb-transition);
  text-decoration: none;
}
.bb-app__btn:hover { border-color: var(--bb-green); background: rgba(76,175,80,0.1); color: var(--bb-text); }
.bb-app__btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.bb-app__btn-sub { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.4px; color: var(--bb-text-muted); font-weight: 500; }
.bb-app__btn-main { font-size: 0.9rem; font-weight: 700; color: #fff; }

/* ===== VIDEO ===== */
.bb-video__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.bb-video__card {
  background: var(--bb-card);
  border: 1px solid var(--bb-card-border);
  border-radius: var(--bb-radius);
  overflow: hidden;
}
.bb-video__card-iframe {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.bb-video__card-iframe iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.bb-video__card-info { padding: 14px 16px; }
.bb-video__card-title { font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.bb-video__card-sub { font-size: 0.76rem; color: var(--bb-text-muted); }

/* ===== BONUSES SLIDER ===== */
.bb-bonuses { position: relative; }
.bb-bonuses__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bb-bonus-card {
  background: var(--bb-card);
  border: 1px solid var(--bb-card-border);
  border-radius: var(--bb-radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--bb-transition), transform var(--bb-transition);
}
.bb-bonus-card:hover { border-color: var(--bb-yellow); transform: translateY(-2px); }
.bb-bonus-card__casino { font-size: 0.75rem; font-weight: 700; color: var(--bb-text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.bb-bonus-card__amount {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--bb-yellow);
  line-height: 1;
}
.bb-bonus-card__desc { font-size: 0.82rem; color: var(--bb-text-muted); line-height: 1.55; }
.bb-bonus-card__tag {
  display: inline-block;
  background: rgba(255,193,7,0.12);
  border: 1px solid rgba(255,193,7,0.3);
  border-radius: 4px;
  padding: 3px 9px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--bb-yellow);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.bb-bonus-card__cta { margin-top: auto; }

.bb-bonuses__nav {
  display: none;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.bb-bonuses__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bb-nav-border);
  cursor: pointer;
  transition: background var(--bb-transition), transform var(--bb-transition);
  border: none;
}
.bb-bonuses__dot.active { background: var(--bb-green); transform: scale(1.3); }

/* ===== DEMO BLOCK ===== */
.bb-demo {
  background: var(--bb-card);
  border: 1px solid var(--bb-card-border);
  border-radius: var(--bb-radius);
  overflow: hidden;
}
.bb-demo__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bb-nav);
  border-bottom: 1px solid var(--bb-nav-border);
  flex-wrap: wrap;
  gap: 12px;
}
.bb-demo__title { font-size: 1rem; font-weight: 700; color: #fff; }
.bb-demo__iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  min-height: 380px;
}
.bb-demo__iframe-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ===== CONTENT BLOCK ===== */
.bb-content-block {
  background: var(--bb-card);
  border: 1px solid var(--bb-card-border);
  border-radius: var(--bb-radius);
  padding: 32px;
  line-height: 1.8;
  font-size: 0.92rem;
  color: var(--bb-text);
}
.bb-content-block h2 { font-size: 1.4rem; font-weight: 800; color: #fff; margin: 24px 0 12px; line-height: 1.25; }
.bb-content-block h3 { font-size: 1.1rem; font-weight: 700; color: var(--bb-green); margin: 20px 0 10px; }
.bb-content-block h4 { font-size: 0.95rem; font-weight: 700; color: #fff; margin: 16px 0 8px; }
.bb-content-block p { margin-bottom: 14px; }
.bb-content-block ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.bb-content-block ol { list-style: decimal; padding-left: 22px; margin-bottom: 14px; }
.bb-content-block li { margin-bottom: 6px; color: var(--bb-text); }
.bb-content-block a { color: var(--bb-green); text-decoration: underline; }
.bb-content-block a:hover { color: var(--bb-yellow); }
.bb-content-block strong { color: #fff; font-weight: 700; }
.bb-content-block em { color: var(--bb-yellow); font-style: italic; }
.bb-content-block blockquote {
  border-left: 3px solid var(--bb-green);
  padding: 12px 18px;
  background: rgba(76,175,80,0.07);
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
  color: var(--bb-text-muted);
  font-style: italic;
}
.bb-content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.85rem;
}
.bb-content-block table th, .bb-content-block table td {
  padding: 10px 14px;
  border: 1px solid var(--bb-card-border);
  text-align: left;
}
.bb-content-block table th { background: var(--bb-nav); color: var(--bb-text-muted); font-weight: 700; }
.bb-content-block table tr:hover td { background: rgba(76,175,80,0.04); }
.bb-content-block img { border-radius: 8px; margin: 12px 0; }
.bb-content-block hr { border: none; border-top: 1px solid var(--bb-card-border); margin: 24px 0; }
.bb-content-block code { background: var(--bb-nav); padding: 2px 6px; border-radius: 4px; font-family: monospace; font-size: 0.85em; color: var(--bb-green); }
.bb-content-block pre { background: var(--bb-nav); padding: 16px; border-radius: 8px; overflow-x: auto; margin: 16px 0; }

/* ===== REVIEWS ===== */
.bb-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.bb-review-card {
  background: var(--bb-card);
  border: 1px solid var(--bb-card-border);
  border-radius: var(--bb-radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--bb-transition);
}
.bb-review-card:hover { border-color: var(--bb-green); }
.bb-review-card__top { display: flex; align-items: center; gap: 12px; }
.bb-review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bb-nav);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--bb-green);
  border: 2px solid var(--bb-nav-border);
  flex-shrink: 0;
}
.bb-review-card__name { font-size: 0.88rem; font-weight: 700; color: #fff; }
.bb-review-card__date { font-size: 0.72rem; color: var(--bb-text-muted); }
.bb-review-card__stars { display: flex; gap: 2px; }
.bb-review-card__star { color: var(--bb-yellow); font-size: 0.85rem; }
.bb-review-card__text { font-size: 0.83rem; color: var(--bb-text-muted); line-height: 1.6; }

.bb-review-form {
  background: var(--bb-card);
  border: 1px solid var(--bb-card-border);
  border-radius: var(--bb-radius);
  padding: 28px;
  max-width: 560px;
}
.bb-review-form__title { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 20px; }
.bb-form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.bb-form-field label { font-size: 0.8rem; font-weight: 600; color: var(--bb-text-muted); }
.bb-form-field input,
.bb-form-field textarea {
  background: var(--bb-nav);
  border: 1px solid var(--bb-nav-border);
  border-radius: var(--bb-radius-sm);
  padding: 11px 14px;
  color: var(--bb-text);
  font-size: 0.88rem;
  font-family: 'Montserrat', sans-serif;
  transition: border-color var(--bb-transition);
  outline: none;
  width: 100%;
}
.bb-form-field input:focus, .bb-form-field textarea:focus { border-color: var(--bb-green); }
.bb-form-field textarea { resize: vertical; min-height: 90px; }
.bb-form-success {
  display: none;
  background: rgba(76,175,80,0.12);
  border: 1px solid var(--bb-green);
  border-radius: var(--bb-radius-sm);
  padding: 14px 18px;
  color: var(--bb-green);
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 12px;
}
.bb-form-success.show { display: block; }

/* ===== AUTHOR ===== */
.bb-author {
  background: var(--bb-card);
  border: 1px solid var(--bb-card-border);
  border-radius: var(--bb-radius);
  padding: 28px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: start;
}
.bb-author__photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bb-green);
}
.bb-author__label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--bb-text-muted); font-weight: 700; margin-bottom: 4px; }
.bb-author__name { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.bb-author__bio { font-size: 0.83rem; color: var(--bb-text-muted); line-height: 1.65; margin-bottom: 14px; }
.bb-author__socials { display: flex; gap: 10px; flex-wrap: wrap; }
.bb-author__social {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bb-nav);
  border: 1px solid var(--bb-nav-border);
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--bb-text-muted);
  transition: border-color var(--bb-transition), color var(--bb-transition);
}
.bb-author__social:hover { border-color: var(--bb-green); color: var(--bb-green); }
.bb-author__social svg { width: 16px; height: 16px; }

/* ===== FOOTER ===== */
.bb-footer {
  background: var(--bb-nav);
  border-top: 1px solid var(--bb-nav-border);
  padding: 48px 0 24px;
}
.bb-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}
.bb-footer__brand-desc { font-size: 0.82rem; color: var(--bb-text-muted); line-height: 1.65; margin-top: 12px; }
.bb-footer__col-title { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; color: var(--bb-text-muted); margin-bottom: 14px; }
.bb-footer__links { display: flex; flex-direction: column; gap: 8px; }
.bb-footer__links a { font-size: 0.82rem; color: var(--bb-text-muted); transition: color var(--bb-transition); }
.bb-footer__links a:hover { color: var(--bb-green); }
.bb-footer__bottom {
  border-top: 1px solid var(--bb-nav-border);
  padding-top: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bb-footer__payments { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.bb-footer__pay-logo {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--bb-nav-border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--bb-text-muted);
}
.bb-footer__trust { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.bb-footer__trust-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--bb-text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bb-nav-border);
  border-radius: 6px;
  padding: 5px 10px;
}
.bb-footer__trust-badge svg { width: 14px; height: 14px; color: var(--bb-green); }
.bb-footer__legal {
  font-size: 0.72rem;
  color: var(--bb-text-muted);
  line-height: 1.65;
  opacity: 0.7;
}
.bb-footer__copyright {
  font-size: 0.78rem;
  color: var(--bb-text-muted);
  font-weight: 600;
}

/* ===== STICKY WIDGET ===== */
.bb-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: linear-gradient(90deg, #1b2b1b 0%, #152a15 100%);
  border-top: 2px solid var(--bb-green);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
  animation: bb-widget-in 0.5s ease-out;
}
@keyframes bb-widget-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.bb-widget__text { font-size: 0.88rem; color: #fff; font-weight: 600; }
.bb-widget__text span { color: var(--bb-yellow); font-weight: 800; }
.bb-widget__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 50%;
  width: 26px; height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--bb-text-muted);
  font-size: 0.9rem;
  transition: background var(--bb-transition);
}
.bb-widget__close:hover { background: rgba(255,255,255,0.15); }
.bb-widget.hidden { display: none; }

/* ===== FAQ ===== */
.bb-faq { display: flex; flex-direction: column; gap: 8px; }
.bb-faq__item {
  background: var(--bb-card);
  border: 1px solid var(--bb-card-border);
  border-radius: var(--bb-radius-sm);
  overflow: hidden;
  transition: border-color var(--bb-transition);
}
.bb-faq__item.open { border-color: var(--bb-green); }
.bb-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  gap: 12px;
}
.bb-faq__q svg {
  width: 18px; height: 18px;
  color: var(--bb-green);
  transition: transform var(--bb-transition);
  flex-shrink: 0;
}
.bb-faq__item.open .bb-faq__q svg { transform: rotate(180deg); }
.bb-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  font-size: 0.85rem;
  color: var(--bb-text-muted);
  line-height: 1.65;
}
.bb-faq__item.open .bb-faq__a {
  max-height: 400px;
  padding: 0 18px 16px;
}

/* ===== MOBILE NAV ===== */
.bb-mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bb-nav);
  z-index: 9997;
  flex-direction: column;
  padding: 80px 24px 32px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.bb-mobile-nav.is-open {
  display: flex;
  transform: translateX(0);
}
.bb-mobile-nav__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--bb-nav-border);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bb-text);
}
.bb-mobile-nav__link svg { width: 18px; height: 18px; color: var(--bb-green); }
.bb-mobile-nav__btns { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }

/* ===== MISC ===== */
.bb-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bb-nav-border), transparent);
  margin: 8px 0;
}

.bb-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.bb-badge--green { background: rgba(76,175,80,0.15); color: var(--bb-green); }
.bb-badge--yellow { background: rgba(255,193,7,0.15); color: var(--bb-yellow); }
.bb-badge--red { background: rgba(239,83,80,0.15); color: var(--bb-red); }

.bb-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--bb-yellow);
  font-size: 1rem;
}

/* ===== HIDDEN WP DECOYS ===== */
.wp-block-group, .entry-content, .wp-site-blocks, .elementor-section-wrap { }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ===== UNUSED STYLES FOR FINGERPRINTING ===== */
.xk9p2-carousel-track { display: flex; will-change: transform; }
.f7m3n-overlay-layer { pointer-events: none; }
.j2q5r-shimmer-base { background-size: 200% 100%; }
.w8d1k-ghost-element { visibility: hidden; position: absolute; }
[data-bb-uid] { --bb-uid-init: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .bb-footer__top { grid-template-columns: 1fr 1fr; }
  .bb-app { grid-template-columns: 1fr; }
  .bb-bonuses__track { grid-template-columns: 1fr; }
  .bb-bonuses__nav { display: flex; }
}

@media (max-width: 768px) {
  .bb-header__inner { grid-template-columns: auto 1fr auto; }
  .bb-nav { display: none; }
  .bb-burger { display: flex; }
  .bb-online { display: none; }
  .bb-header__logo span { font-size: 1.1rem; }
  .bb-hero { min-height: 360px; }
  .bb-hero__content { padding: 40px 16px; }
  .bb-casino-card__inner { grid-template-columns: 60px 1fr; }
  .bb-casino-card__logo { width: 60px; height: 60px; }
  .bb-casino-card__meta { grid-template-columns: 1fr 1fr; }
  .bb-reviews__grid { grid-template-columns: 1fr; }
  .bb-author { grid-template-columns: 1fr; text-align: center; }
  .bb-author__photo { margin: 0 auto; }
  .bb-author__socials { justify-content: center; }
  .bb-footer__top { grid-template-columns: 1fr; }
  .bb-advantages { grid-template-columns: 1fr 1fr; }
  .bb-section { padding: 40px 0; }
  .bb-widget { padding: 10px 40px 10px 16px; }
}

@media (max-width: 480px) {
  .bb-hero__actions { flex-direction: column; }
  .bb-hero__actions .bb-btn { width: 100%; justify-content: center; }
  .bb-casino-card__actions .bb-btn { flex: 1; justify-content: center; }
  .bb-advantages { grid-template-columns: 1fr; }
  .bb-video__grid { grid-template-columns: 1fr; }
  .bb-app__btns { flex-direction: column; }
  .bb-content-block { padding: 20px 16px; }
  .bb-review-form { padding: 20px 16px; }
  .bb-author { padding: 20px 16px; }
  .bb-demo__header { flex-direction: column; }
}

@media (min-width: 769px) {
  .bb-mobile-nav { display: none !important; }
}

body { padding-bottom: 64px; }

/* ===== INDEX.HTML LAYOUT ALIASES ===== */
.bb-casino { display: grid; grid-template-columns: 36px 110px 1fr auto; gap: 16px; align-items: center; background: var(--bb-card); border-radius: var(--bb-radius); padding: 18px; border: 1px solid var(--bb-card-border); transition: border-color var(--bb-transition), box-shadow var(--bb-transition); }
.bb-casino:hover { border-color: var(--bb-green); box-shadow: 0 4px 20px rgba(0,0,0,.3); }
.bb-casino--top { border-left: 3px solid transparent; }
.bb-casino--top1 { border-left-color: #ffd700; background: linear-gradient(90deg, rgba(255,215,0,.06), var(--bb-card)); }
.bb-casino--top2 { border-left-color: #c0c0c0; background: linear-gradient(90deg, rgba(192,192,192,.05), var(--bb-card)); }
.bb-casino--top3 { border-left-color: #cd7f32; background: linear-gradient(90deg, rgba(205,127,50,.06), var(--bb-card)); }
.bb-casino__rank { font-size: 1.1rem; font-weight: 800; color: var(--bb-text-muted); text-align: center; }
.bb-casino--top1 .bb-casino__rank { color: #ffd700; }
.bb-casino--top2 .bb-casino__rank { color: #c8c8c8; }
.bb-casino--top3 .bb-casino__rank { color: #c8944a; }
.bb-casino__logo img, .bb-casino__logo-placeholder { border-radius: 6px; object-fit: contain; }
.bb-casino__info { min-width: 0; }
.bb-casino__name-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
.bb-casino__name { font-weight: 700; font-size: 1rem; color: #fff; }
.bb-casino__flag { font-size: 1rem; }
.bb-casino__rating { display: flex; align-items: center; gap: 3px; font-size: .82rem; color: var(--bb-text-muted); }
.bb-casino__bonus { font-size: .85rem; color: var(--bb-yellow); font-weight: 600; margin-bottom: 4px; }
.bb-casino__meta { display: flex; gap: 12px; flex-wrap: wrap; font-size: .75rem; color: var(--bb-text-muted); margin-bottom: 5px; }
.bb-casino__desc { font-size: .83rem; color: var(--bb-text-muted); line-height: 1.5; }
.bb-casino__actions { display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; }
.bb-casino-list { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.bb-casino-pagination { display: flex; justify-content: center; margin-top: 20px; }

.bb-section { background: var(--bb-card); border-radius: var(--bb-radius); padding: 28px 24px; border: 1px solid var(--bb-card-border); margin-top: 36px; }
.bb-section__title { display: flex; align-items: center; gap: 10px; font-size: 1.28rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.bb-section__title svg { color: var(--bb-green); flex-shrink: 0; }
.bb-section__desc { color: var(--bb-text-muted); font-size: .9rem; margin-bottom: 20px; line-height: 1.6; }

.bb-tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--bb-radius); }

.bb-advantages { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.bb-advantage { display: flex; gap: 14px; align-items: flex-start; background: var(--bb-nav); border: 1px solid var(--bb-nav-border); border-radius: var(--bb-radius); padding: 18px; transition: border-color var(--bb-transition); }
.bb-advantage:hover { border-color: var(--bb-green); }
.bb-advantage__icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 10px; background: rgba(76,175,80,.12); display: flex; align-items: center; justify-content: center; color: var(--bb-green); }
.bb-advantage__icon svg { width: 28px; height: 28px; }
.bb-advantage__title { font-weight: 700; font-size: .95rem; color: #fff; margin-bottom: 6px; }
.bb-advantage__content p { font-size: .83rem; color: var(--bb-text-muted); line-height: 1.6; }

.bb-app-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.bb-app-btn { display: flex; align-items: center; gap: 10px; padding: 12px 20px; background: var(--bb-nav); border: 1px solid var(--bb-nav-border); border-radius: 10px; color: var(--bb-text); font-size: .9rem; font-weight: 700; text-decoration: none; transition: background var(--bb-transition), border-color var(--bb-transition); }
.bb-app-btn:hover { background: rgba(76,175,80,.12); border-color: var(--bb-green); color: #fff; }

.bb-video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 20px; }
.bb-video__label { font-size: .82rem; font-weight: 700; color: var(--bb-text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .04em; }
.bb-video__frame { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 10px; overflow: hidden; background: #0a0f0a; }
.bb-video__frame iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

.bb-bonus-slider { position: relative; overflow: hidden; margin-top: 20px; }
.bb-bonus-track { display: flex; gap: 16px; transition: transform .4s cubic-bezier(.4,0,.2,1); }
.bb-bonus-card { min-width: 320px; flex: 0 0 320px; background: var(--bb-card); border: 1px solid var(--bb-card-border); border-radius: var(--bb-radius); padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.bb-bonus-card__casino { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--bb-text-muted); }
.bb-bonus-card__title { font-size: 1.15rem; font-weight: 800; color: var(--bb-yellow); line-height: 1.3; }
.bb-bonus-card__detail { display: flex; flex-direction: column; gap: 5px; font-size: .82rem; color: var(--bb-text-muted); }
.bb-bonus-card__detail div { display: flex; justify-content: space-between; }
.bb-bonus-card__detail span { font-weight: 600; color: var(--bb-text); }
.bb-bonus-card__code { font-size: .83rem; background: rgba(76,175,80,.1); border: 1px dashed rgba(76,175,80,.3); border-radius: 6px; padding: 7px 12px; color: var(--bb-text); }
.bb-bonus-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.bb-bonus-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--bb-nav-border); border: none; cursor: pointer; transition: background var(--bb-transition), transform var(--bb-transition); }
.bb-bonus-dot.active { background: var(--bb-green); transform: scale(1.3); }

.bb-demo-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 20px; margin-top: 20px; align-items: start; }
.bb-demo-frame { height: 480px; border-radius: var(--bb-radius); overflow: hidden; background: #0a100a; border: 1px solid var(--bb-card-border); }
.bb-demo-frame iframe { width: 100%; height: 100%; border: 0; }
.bb-demo-cta { background: var(--bb-nav); border: 1px solid var(--bb-nav-border); border-radius: var(--bb-radius); padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.bb-demo-cta__text { font-size: 1.05rem; font-weight: 800; color: #fff; }
.bb-demo-cta p { font-size: .85rem; color: var(--bb-text-muted); line-height: 1.6; }

.bb-review-content { background: var(--bb-card); }
.bb-content-body { margin-top: 16px; }

.bb-reviews { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.bb-review { background: var(--bb-nav); border: 1px solid var(--bb-nav-border); border-radius: var(--bb-radius); padding: 18px; transition: border-color var(--bb-transition); }
.bb-review:hover { border-color: var(--bb-green); }
.bb-review__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.bb-review__avatar { border-radius: 50%; width: 44px; height: 44px; object-fit: cover; flex-shrink: 0; }
.bb-review__name { font-weight: 700; font-size: .9rem; color: #fff; margin-bottom: 3px; }
.bb-review__stars { display: flex; gap: 2px; }
.bb-review__text { font-size: .85rem; color: var(--bb-text-muted); line-height: 1.65; }

.bb-review-form { background: var(--bb-nav); border: 1px solid var(--bb-nav-border); border-radius: var(--bb-radius); padding: 24px; margin-top: 24px; }
.bb-review-form__title { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 18px; }
.bb-form { display: flex; flex-direction: column; gap: 14px; }
.bb-form__group { display: flex; flex-direction: column; gap: 6px; }
.bb-form__label { font-size: .82rem; font-weight: 600; color: var(--bb-text-muted); }
.bb-form__input { background: var(--bb-bg); border: 1px solid var(--bb-nav-border); border-radius: 8px; padding: 10px 14px; color: var(--bb-text); font-family: 'Montserrat', sans-serif; font-size: .88rem; transition: border-color var(--bb-transition); width: 100%; outline: none; }
.bb-form__input:focus { border-color: var(--bb-green); }
.bb-form__input::placeholder { color: #4a5e4a; }
.bb-form__textarea { resize: vertical; min-height: 90px; }
.bb-form__success { background: rgba(76,175,80,.15); border: 1px solid rgba(76,175,80,.35); border-radius: 8px; padding: 12px 16px; color: #a5d6a7; font-size: .88rem; font-weight: 600; margin-top: 4px; }
.bb-star-rating { display: flex; flex-direction: row-reverse; gap: 4px; }
.bb-star-rating input { display: none; }
.bb-star-rating label { cursor: pointer; color: #3a4a3a; transition: color var(--bb-transition); display: flex; }
.bb-star-rating input:checked ~ label, .bb-star-rating label:hover, .bb-star-rating label:hover ~ label { color: var(--bb-yellow); }

.bb-breadcrumbs { padding: 12px 0 4px; margin-bottom: 8px; }
.bb-breadcrumbs__list { display: flex; align-items: center; gap: 4px; list-style: none; flex-wrap: wrap; }
.bb-breadcrumbs__item { display: flex; align-items: center; gap: 4px; font-size: .78rem; color: var(--bb-text-muted); }
.bb-breadcrumbs__link { color: var(--bb-text-muted); text-decoration: none; transition: color var(--bb-transition); }
.bb-breadcrumbs__link:hover { color: var(--bb-green); }
.bb-breadcrumbs__item--active { color: var(--bb-text); }

.bb-hero__bg { position: absolute; inset: 0; z-index: 0; }
.bb-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.bb-hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,20,13,.92) 40%, rgba(13,20,13,.5) 100%); }
.bb-hero__btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.bb-hero__sub { font-size: clamp(.95rem, 2vw, 1.1rem); color: var(--bb-text-muted); margin-bottom: 28px; max-width: 560px; line-height: 1.6; }

@media (max-width: 1024px) {
  .bb-demo-wrap { grid-template-columns: 1fr; }
  .bb-demo-frame { height: 360px; }
  .bb-video-grid { grid-template-columns: 1fr; }
  .bb-bonus-card { min-width: calc(100vw - 80px); flex: 0 0 calc(100vw - 80px); }
}
@media (max-width: 768px) {
  .bb-advantages { grid-template-columns: 1fr; }
  .bb-reviews { grid-template-columns: 1fr; }
  .bb-casino { grid-template-columns: 28px 80px 1fr; }
  .bb-casino__actions { grid-column: 1 / -1; flex-direction: row; justify-content: flex-end; }
  .bb-section { padding: 20px 14px; }

}
@media (max-width: 480px) {
  .buttons155{display: none}
  .bb-casino { grid-template-columns: 24px 1fr; }
  .bb-casino__logo { display: none; }
  .bb-app-btns { flex-direction: column; }
}
.bb-faq__q{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: transparent;
  border: 0;
  outline: none;

  text-align: left;
  font: inherit;
  color: inherit;
}

.bb-faq__q:focus{
  outline: none;
}
.bb-review-content{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00));
  border: 1px solid var(--bb-card-border);
  border-radius: var(--bb-radius);
  padding: 28px 24px;
}

.bb-review-content > .bb-section__title{
  margin-bottom: 18px;
}

.bb-content-body{
  max-width: 920px;
  margin-top: 10px;
}


.bb-content-body{
  color: var(--bb-text);
  font-size: 0.95rem;
  line-height: 1.85;
}


.bb-content-body h1,
.bb-content-body h2,
.bb-content-body h3,
.bb-content-body h4{
  color: #fff;
  line-height: 1.25;
  scroll-margin-top: 90px;
}

.bb-content-body h1{
  font-size: clamp(1.55rem, 3.6vw, 2.2rem);
  font-weight: 900;
  margin: 10px 0 14px;
  letter-spacing: 0.2px;
}

.bb-content-body h2{
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  font-weight: 850;
  margin: 26px 0 10px;
  padding-top: 2px;
  border-top: 1px solid rgba(42,63,42,0.7);
}

.bb-content-body h3{
  font-size: 1.05rem;
  font-weight: 800;
  margin: 22px 0 8px;
  color: var(--bb-green);
}

.bb-content-body h4{
  font-size: 0.95rem;
  font-weight: 800;
  margin: 18px 0 8px;
  color: #fff;
}


.bb-content-body p{
  margin: 0 0 14px;
  color: var(--bb-text);
}


.bb-content-body a{
  color: var(--bb-green);
  text-decoration: underline;
  text-decoration-color: rgba(76,175,80,0.35);
  text-underline-offset: 3px;
  transition: color var(--bb-transition), text-decoration-color var(--bb-transition);
}
.bb-content-body a:hover{
  color: var(--bb-yellow);
  text-decoration-color: rgba(255,193,7,0.45);
}

.bb-content-body strong{ color: #fff; font-weight: 800; }
.bb-content-body em{ color: var(--bb-yellow); }


.bb-content-body ul,
.bb-content-body ol{
  margin: 0 0 14px;
  padding-left: 22px;
}
.bb-content-body ul{ list-style: disc; }
.bb-content-body ol{ list-style: decimal; }
.bb-content-body li{
  margin: 6px 0;
  color: var(--bb-text);
}


.bb-content-body blockquote{
  margin: 16px 0;
  padding: 14px 16px;
  border-left: 3px solid var(--bb-green);
  background: rgba(76,175,80,0.08);
  border-radius: 0 10px 10px 0;
  color: var(--bb-text-muted);
}


.bb-content-body hr{
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bb-nav-border), transparent);
  margin: 22px 0;
}


.bb-content-body code{
  background: rgba(27,43,27,0.9);
  border: 1px solid rgba(42,63,42,0.8);
  padding: 2px 6px;
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.9em;
  color: #b7f0bb;
}
.bb-content-body pre{
  background: rgba(27,43,27,0.92);
  border: 1px solid rgba(42,63,42,0.85);
  border-radius: 12px;
  padding: 14px 16px;
  overflow-x: auto;
  margin: 16px 0;
}


.bb-content-body table{
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.9rem;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(21,32,21,0.55);
  border: 1px solid rgba(42,63,42,0.9);
}
.bb-content-body th,
.bb-content-body td{
  padding: 12px 14px;
  border-bottom: 1px solid rgba(42,63,42,0.8);
  text-align: left;
  vertical-align: top;
}
.bb-content-body th{
  background: rgba(27,43,27,0.85);
  color: var(--bb-text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.bb-content-body tr:last-child td{ border-bottom: 0; }
.bb-content-body tr:hover td{ background: rgba(76,175,80,0.05); }


.bb-content-body img{
  margin: 14px 0;
  border-radius: 12px;
  border: 1px solid rgba(42,63,42,0.8);
}


.bb-content-body h1 + p{
  color: var(--bb-text-muted);
  font-size: 1.02rem;
}


.bb-content-body h3 + p,
.bb-content-body h3 ~ p{

}

@media (max-width: 768px){
  .bb-review-content{ padding: 20px 14px; }
  .bb-content-body{ max-width: 100%; }
  .bb-content-body h2{ margin-top: 22px; }
}
.bb-burger{
  margin-left: auto;
}

