:root {
  --bb-dark: #0d1117;
  --bb-dark2: #161c27;
  --bb-dark3: #1e2738;
  --bb-accent: #f7c948;
  --bb-green: #27ae60;
  --bb-green2: #1e9e53;
  --bb-red: #e74c3c;
  --bb-text: #e8eaf0;
  --bb-text-muted: #8a95a8;
  --bb-border: #2a3347;
  --bb-radius: 10px;
  --bb-radius-sm: 6px;
  --bb-shadow: 0 4px 24px rgba(0,0,0,.45);
  --font-main: 'Inter', sans-serif;
}

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

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

body {
  font-family: var(--font-main);
  background: var(--bb-dark);
  color: var(--bb-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--bb-accent); text-decoration: none; transition: color .2s; }
a:hover { color: #ffe075; }

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

.x7k2m { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.q9pz1 { display: none; }
.r3lw8 { visibility: hidden; }
.t5nm4 { opacity: 0; pointer-events: none; }

/* ===== HEADER ===== */
.bb-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bb-dark2);
  border-bottom: 1px solid var(--bb-border);
  box-shadow: 0 2px 12px rgba(0,0,0,.5);
}

.bb-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}

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

.bb-header__nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.bb-header__nav a {
  color: var(--bb-text);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--bb-radius-sm);
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.bb-header__nav a:hover {
  background: var(--bb-dark3);
  color: var(--bb-accent);
}

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

.bb-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--bb-text-muted);
  white-space: nowrap;
}

.bb-online__dot {
  width: 8px;
  height: 8px;
  background: var(--bb-green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}

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

.bb-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bb-text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.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); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--bb-radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .15s, box-shadow .15s, filter .15s;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .2s;
}

.btn:hover::after { background: rgba(255,255,255,.08); }
.btn:active { transform: scale(.97); }

.btn--login {
  background: var(--bb-dark3);
  color: var(--bb-accent);
  border: 1px solid var(--bb-border);
}

.btn--login:hover { color: var(--bb-accent); border-color: var(--bb-accent); }

.btn--signup {
  background: linear-gradient(135deg, #f7c948, #e0a800);
  color: #0d1117;
  box-shadow: 0 2px 12px rgba(247,201,72,.35);
}

.btn--signup:hover { color: #0d1117; filter: brightness(1.08); }

.btn--hero {
  background: linear-gradient(135deg, #f7c948, #e0a800);
  color: #0d1117;
  font-size: 17px;
  padding: 15px 36px;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(247,201,72,.45);
  font-weight: 700;
}

.btn--hero:hover { color: #0d1117; filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 6px 30px rgba(247,201,72,.55); }

.btn--bonus-cta {
  background: linear-gradient(135deg, var(--bb-green), var(--bb-green2));
  color: #fff;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(39,174,96,.35);
  font-weight: 700;
}

.btn--bonus-cta:hover { color: #fff; filter: brightness(1.08); transform: translateY(-1px); }

/* ===== HERO ===== */
.bb-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bb-hero__bg {
  position: absolute;
  inset: 0;
  background: url('/bb-banner.png') center/cover no-repeat;
  filter: brightness(.45);
  z-index: 0;
}

.bb-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,17,23,.85) 40%, transparent 100%);
  z-index: 1;
}

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

.bb-hero__badge {
  display: inline-block;
  background: rgba(247,201,72,.15);
  border: 1px solid rgba(247,201,72,.4);
  color: var(--bb-accent);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 16px;
}

.bb-hero__title {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 14px;
}

.bb-hero__title span { color: var(--bb-accent); }

.bb-hero__desc {
  font-size: 17px;
  color: rgba(232,234,240,.8);
  margin-bottom: 28px;
  line-height: 1.6;
}

.bb-hero__bonus {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(39,174,96,.15);
  border: 1px solid rgba(39,174,96,.35);
  border-radius: var(--bb-radius);
  padding: 12px 20px;
  margin-bottom: 28px;
  font-size: 15px;
  color: #6ee89e;
  font-weight: 600;
}

/* ===== BREADCRUMBS ===== */
.bb-breadcrumbs {
  padding: 12px 0;
  background: var(--bb-dark2);
  border-bottom: 1px solid var(--bb-border);
}

.bb-breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
  font-size: 13px;
}

.bb-breadcrumbs__list li { display: flex; align-items: center; gap: 8px; }
.bb-breadcrumbs__list li::after { content: '/'; color: var(--bb-text-muted); }
.bb-breadcrumbs__list li:last-child::after { display: none; }
.bb-breadcrumbs__list a { color: var(--bb-text-muted); }
.bb-breadcrumbs__list a:hover { color: var(--bb-accent); }
.bb-breadcrumbs__list li:last-child span { color: var(--bb-text); }

/* ===== LAYOUT ===== */
.bb-main { padding: 40px 0; }

.bb-section { margin-bottom: 40px; }

.bb-block {
  background: var(--bb-dark2);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius);
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: var(--bb-shadow);
}

.bb-block--accent {
  border-color: rgba(247,201,72,.25);
  background: linear-gradient(135deg, var(--bb-dark2) 80%, rgba(247,201,72,.04) 100%);
}

.bb-block__title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bb-border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.bb-block__title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background: var(--bb-accent);
  border-radius: 2px;
}

/* ===== TABLE OF CONTENTS ===== */
.bb-toc__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}

.bb-toc__list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bb-dark3);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--bb-text);
  transition: border-color .2s, background .2s, color .2s;
}

.bb-toc__list li a::before {
  content: '#';
  color: var(--bb-accent);
  font-weight: 700;
  font-size: 13px;
}

.bb-toc__list li a:hover {
  border-color: var(--bb-accent);
  background: rgba(247,201,72,.06);
  color: var(--bb-accent);
}

/* ===== INFO TABLE ===== */
.bb-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  overflow-x: auto;
  display: block;
}

.bb-info-table tbody tr {
  border-bottom: 1px solid var(--bb-border);
  transition: background .15s;
}

.bb-info-table tbody tr:last-child { border-bottom: none; }
.bb-info-table tbody tr:hover { background: rgba(247,201,72,.04); }

.bb-info-table td {
  padding: 11px 16px;
  text-align: left;
  vertical-align: top;
}

.bb-info-table td:first-child {
  color: var(--bb-text-muted);
  font-weight: 500;
  width: 42%;
  white-space: nowrap;
}

.bb-info-table td:last-child { color: var(--bb-text); font-weight: 600; }

.bb-rating-stars { color: var(--bb-accent); letter-spacing: 2px; }

/* ===== JACKPOTS ===== */
.bb-jackpots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.bb-jackpot-card {
  background: linear-gradient(135deg, #1a2235, #0f1620);
  border: 1px solid rgba(247,201,72,.25);
  border-radius: var(--bb-radius);
  padding: 20px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}

.bb-jackpot-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 80px; height: 80px;
  background: rgba(247,201,72,.08);
  border-radius: 50%;
}

.bb-jackpot-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(247,201,72,.15); }

.bb-jackpot-card__label {
  font-size: 12px;
  color: var(--bb-text-muted);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 8px;
}

.bb-jackpot-card__amount {
  font-size: 26px;
  font-weight: 800;
  color: var(--bb-accent);
  line-height: 1.1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}

.bb-jackpot-card__game {
  font-size: 13px;
  color: var(--bb-text-muted);
}

/* ===== VIDEO ===== */
.bb-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--bb-radius);
  overflow: hidden;
  background: #000;
}

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

/* ===== BONUSES ===== */
.bb-bonuses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bb-bonus-card {
  background: var(--bb-dark3);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s, transform .2s;
  position: relative;
  overflow: hidden;
}

.bb-bonus-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bb-accent), #e0a800);
}

.bb-bonus-card:hover { border-color: rgba(247,201,72,.4); transform: translateY(-3px); }

.bb-bonus-card__icon { font-size: 32px; }

.bb-bonus-card__type {
  font-size: 11px;
  font-weight: 700;
  color: var(--bb-accent);
  text-transform: uppercase;
  letter-spacing: .8px;
}

.bb-bonus-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.bb-bonus-card__amount {
  font-size: 22px;
  font-weight: 800;
  color: var(--bb-green);
}

.bb-bonus-card__desc {
  font-size: 13px;
  color: var(--bb-text-muted);
  line-height: 1.5;
  flex: 1;
}

/* ===== CONTENT BLOCK ===== */
.bb-content-body { line-height: 1.7; font-size: 16px; color: var(--bb-text); }
.bb-content-body h2 { font-size: 22px; font-weight: 700; color: #fff; margin: 28px 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--bb-border); }
.bb-content-body h3 { font-size: 18px; font-weight: 700; color: #fff; margin: 22px 0 10px; }
.bb-content-body h4 { font-size: 16px; font-weight: 600; color: var(--bb-accent); margin: 18px 0 8px; }
.bb-content-body p { margin-bottom: 14px; }
.bb-content-body ul, .bb-content-body ol { margin: 12px 0 14px 22px; }
.bb-content-body li { margin-bottom: 6px; }
.bb-content-body ul li::marker { color: var(--bb-accent); }
.bb-content-body a { color: var(--bb-accent); }
.bb-content-body strong { color: #fff; font-weight: 600; }
.bb-content-body em { color: var(--bb-text-muted); }
.bb-content-body blockquote { border-left: 3px solid var(--bb-accent); padding: 10px 16px; margin: 16px 0; background: rgba(247,201,72,.05); border-radius: 0 6px 6px 0; color: var(--bb-text-muted); font-style: italic; }
.bb-content-body table { width: 100%; border-collapse: collapse; margin: 16px 0; overflow-x: auto; display: block; font-size: 14px; }
.bb-content-body table th { background: var(--bb-dark3); color: var(--bb-accent); padding: 10px 14px; text-align: left; border: 1px solid var(--bb-border); }
.bb-content-body table td { padding: 9px 14px; border: 1px solid var(--bb-border); color: var(--bb-text); }
.bb-content-body table tr:hover td { background: rgba(247,201,72,.03); }
.bb-content-body img { border-radius: var(--bb-radius-sm); margin: 16px 0; }
.bb-content-body hr { border: none; border-top: 1px solid var(--bb-border); margin: 24px 0; }

/* ===== FAQ ===== */
.bb-faq { display: flex; flex-direction: column; gap: 10px; }

.bb-faq__item {
  background: var(--bb-dark3);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius);
  overflow: hidden;
  transition: border-color .2s;
}

.bb-faq__item.open { border-color: rgba(247,201,72,.35); }

.bb-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  user-select: none;
  transition: color .2s;
}

.bb-faq__item.open .bb-faq__question { color: var(--bb-accent); }

.bb-faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform .3s;
  color: var(--bb-text-muted);
}

.bb-faq__item.open .bb-faq__chevron { transform: rotate(180deg); color: var(--bb-accent); }

.bb-faq__answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--bb-text-muted);
  line-height: 1.65;
}

.bb-faq__item.open .bb-faq__answer { display: block; }

/* ===== AUTHOR ===== */
.bb-author {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.bb-author__photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bb-accent);
  flex-shrink: 0;
}

.bb-author__name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.bb-author__role {
  font-size: 13px;
  color: var(--bb-accent);
  font-weight: 600;
  margin-bottom: 10px;
}

.bb-author__bio {
  font-size: 14px;
  color: var(--bb-text-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

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

.bb-author__social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  background: var(--bb-dark3);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-sm);
  padding: 6px 12px;
  color: var(--bb-text-muted);
  transition: border-color .2s, color .2s;
}

.bb-author__social a:hover { border-color: var(--bb-accent); color: var(--bb-accent); }

/* ===== FOOTER ===== */
.bb-footer {
  background: var(--bb-dark2);
  border-top: 1px solid var(--bb-border);
  margin-top: 40px;
  padding: 40px 0 20px;
}

.bb-footer__top {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--bb-border);
}

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

.bb-footer__desc { font-size: 13px; color: var(--bb-text-muted); line-height: 1.6; }

.bb-footer__col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--bb-text-muted);
  margin-bottom: 14px;
}

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

.bb-footer__nav a {
  font-size: 14px;
  color: var(--bb-text-muted);
  transition: color .2s;
}

.bb-footer__nav a:hover { color: var(--bb-accent); }

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

.bb-footer__logo-chip {
  background: var(--bb-dark3);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-sm);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--bb-text-muted);
  white-space: nowrap;
}

.bb-footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.bb-footer__legal {
  font-size: 12px;
  color: var(--bb-text-muted);
  line-height: 1.6;
  max-width: 700px;
}

.bb-footer__copy { font-size: 13px; color: var(--bb-text-muted); white-space: nowrap; }

/* ===== WIDGET ===== */
.bb-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #0d2918 0%, #0f1f0e 100%);
  border-top: 2px solid var(--bb-green);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.5);
}

.bb-widget__text {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

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

.bb-widget__close {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--bb-text-muted);
  font-size: 18px;
  line-height: 1;
  padding: 4px;
  transition: color .2s;
  flex-shrink: 0;
}

.bb-widget__close:hover { color: #fff; }

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

/* ===== SLIDER (mobile bonuses) ===== */
.bb-slider-wrap { position: relative; overflow: hidden; }

.bb-slider { display: flex; gap: 20px; transition: transform .35s ease; }

.bb-slider-nav {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

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

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

/* ===== MOBILE NAV ===== */
.bb-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--bb-dark2);
  border-top: 1px solid var(--bb-border);
  padding: 12px 20px 16px;
}

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

.bb-mobile-nav a {
  color: var(--bb-text);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: var(--bb-radius-sm);
  transition: background .2s, color .2s;
}

.bb-mobile-nav a:hover { background: var(--bb-dark3); color: var(--bb-accent); }

/* ===== MISC UNUSED (uniqueness) ===== */
.wp-block-group { display: block; }
.elementor-widget-wrap { display: contents; }
.entry-content { display: contents; }
.wp-post-image { display: block; }
.widget-area { visibility: inherit; }
.site-main { display: contents; }
.yoast-seo-meta-tag { display: none; }
.m9xv3 { background: transparent; }
.d4jq7 { color: inherit; }
.c2rf5 { border: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .bb-footer__top { grid-template-columns: 1fr 1fr; }
  .bb-footer__top > :first-child { grid-column: 1 / -1; }
  .bb-bonuses { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .bb-header__nav { display: none; }
  .bb-burger { display: flex; }
  .bb-online { display: none; }

  .bb-hero { min-height: 400px; }
  .bb-hero__content { padding: 40px 0; }

  /* Bonus slider: switch to horizontal flex so cards slide correctly */
  .bb-slider-wrap { touch-action: pan-y; }
  .bb-bonuses.bb-slider {
    display: flex;
    flex-wrap: nowrap;
    grid-template-columns: unset;
    gap: 0;
    will-change: transform;
    transition: transform .35s cubic-bezier(.4,0,.2,1);
  }
  .bb-bonuses.bb-slider .bb-bonus-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    margin-right: 16px;
    box-sizing: border-box;
  }
  .bb-bonuses.bb-slider .bb-bonus-card:last-child { margin-right: 0; }
  .bb-slider-nav { display: flex; }

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

  .bb-author { flex-direction: column; align-items: center; text-align: center; }
  .bb-author__social { justify-content: center; }

  .bb-footer__top { grid-template-columns: 1fr; gap: 24px; }
  .bb-footer__bottom { flex-direction: column; align-items: center; text-align: center; }

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

  .bb-block {
    padding: 18px;
    overflow: hidden;
  }

  /* Content body: prevent text/tables from overflowing on narrow screens */
  .bb-content-body {
    overflow-x: auto;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .bb-content-body table {
    min-width: unset;
    width: 100%;
  }
  .bb-content-body td,
  .bb-content-body th {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .bb-widget { flex-wrap: wrap; gap: 8px; }
  .bb-widget__text { font-size: 13px; }
}

@media (max-width: 480px) {
  .bb-jackpots { grid-template-columns: 1fr; }
  .btn--hero { font-size: 15px; padding: 12px 24px; }
  .bb-hero__title { font-size: 24px; }
  .bb-info-table td:first-child { white-space: normal; width: 50%; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 769px) {
  .bb-block {
    animation: fadeInUp .4s ease both;
  }
}

.bb-jackpot-card__amount {
  animation: jackpot-glow 3s ease-in-out infinite;
}

@keyframes jackpot-glow {
  0%, 100% { text-shadow: 0 0 8px rgba(247,201,72,.3); }
  50% { text-shadow: 0 0 18px rgba(247,201,72,.7); }
}

@keyframes widget-slide {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.bb-widget { animation: widget-slide .4s ease .8s both; }
