@import url('/wp-content/themes/chickroad/assets/fonts/poppins.css');
:root {
  --cr-bg: #0d0d0d;
  --cr-nav: #141414;
  --cr-orange: #ff6b00;
  --cr-green: #22c55e;
  --cr-text: #e8e8e8;
  --cr-text-muted: #9a9a9a;
  --cr-border: #2a2a2a;
  --cr-card: #1a1a1a;
  --cr-card2: #181818;
  --cr-orange-dark: #c94f00;
  --cr-green-dark: #16a34a;
  --cr-radius: 12px;
  --cr-radius-sm: 8px;
  --cr-shadow: 0 4px 24px rgba(0,0,0,0.5);
  --cr-shadow-orange: 0 0 20px rgba(255,107,0,0.3);
  --cr-shadow-green: 0 0 20px rgba(34,197,94,0.3);
  --cr-transition: 0.25s ease;
  --cr-font: 'Poppins', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  font-family: var(--cr-font);
  background: var(--cr-bg);
  color: var(--cr-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  max-width: 100vw;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cr-orange); text-decoration: none; transition: color var(--cr-transition); }
a:hover { color: #ff8c33; }
ul { list-style: none; }
.mb-3k9x-wrap {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.mb-3k9x-section { padding: 60px 0; }
.mb-3k9x-section-sm { padding: 40px 0; }
.mb-3k9x-heading {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--cr-text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.mb-3k9x-heading span { color: var(--cr-orange); }
.mb-3k9x-subtitle {
  color: var(--cr-text-muted);
  font-size: 0.95rem;
  margin-bottom: 36px;
  line-height: 1.6;
}
.mb-3k9x-divider {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--cr-orange), var(--cr-green));
  border-radius: 2px;
  margin: 12px 0 32px;
}
.mb-7z2q-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--cr-radius-sm);
  font-family: var(--cr-font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform var(--cr-transition), box-shadow var(--cr-transition), background var(--cr-transition), opacity var(--cr-transition);
  white-space: nowrap;
  line-height: 1;
  max-width: 100%;
}
.mb-7z2q-btn:hover { transform: translateY(-2px); opacity: 0.92; }
.mb-7z2q-btn:active { transform: translateY(0); }
.mb-7z2q-btn--orange { background: var(--cr-orange); color: #fff; box-shadow: 0 4px 16px rgba(255,107,0,0.35); }
.mb-7z2q-btn--orange:hover { background: #ff7b1a; color: #fff; box-shadow: var(--cr-shadow-orange); }
.mb-7z2q-btn--green { background: var(--cr-green); color: #fff; box-shadow: 0 4px 16px rgba(34,197,94,0.35); }
.mb-7z2q-btn--green:hover { background: #2dd468; color: #fff; box-shadow: var(--cr-shadow-green); }
.mb-7z2q-btn--outline { background: transparent; color: var(--cr-orange); border: 2px solid var(--cr-orange); }
.mb-7z2q-btn--outline:hover { background: var(--cr-orange); color: #fff; }
.mb-7z2q-btn--sm { padding: 8px 16px; font-size: 0.82rem; }
.mb-7z2q-btn--lg { padding: 15px 32px; font-size: 1rem; }
.mb-7z2q-btn--full { width: 100%; justify-content: center; }
.mb-hdr-8f2p {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cr-nav);
  border-bottom: 1px solid var(--cr-border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.6);
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}
.mb-hdr-8f2p-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  max-width: 1260px;
  margin: 0 auto;
  min-width: 0;
}
.mb-hdr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}
.mb-hdr-logo img { height: 44px; width: auto; border-radius: 6px; object-fit: contain; }
.mb-hdr-logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--cr-text);
  letter-spacing: -0.5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mb-hdr-logo-text span { color: var(--cr-orange); }
.mb-hdr-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}
.mb-hdr-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--cr-text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--cr-radius-sm);
  transition: color var(--cr-transition), background var(--cr-transition);
  text-decoration: none;
  white-space: nowrap;
}
.mb-hdr-nav a:hover { color: var(--cr-text); background: rgba(255,255,255,0.05); }
.mb-hdr-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }
.mb-hdr-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.mb-hdr-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--cr-text-muted);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 20px;
  padding: 5px 12px;
  white-space: nowrap;
}
.mb-hdr-online-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cr-green);
  animation: mb-pulse-anim 1.8s infinite;
  flex-shrink: 0;
}
@keyframes mb-pulse-anim {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.mb-hdr-lang {
  position: relative;
}
.mb-hdr-lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius-sm);
  color: var(--cr-text);
  font-size: 0.85rem;
  font-family: var(--cr-font);
  padding: 7px 10px;
  cursor: pointer;
  transition: background var(--cr-transition);
  white-space: nowrap;
}
.mb-hdr-lang-btn:hover { background: rgba(255,255,255,0.1); }
.mb-hdr-lang-drop {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius-sm);
  min-width: 140px;
  z-index: 200;
  overflow: hidden;
  box-shadow: var(--cr-shadow);
}
.mb-hdr-lang-drop.is-open { display: block; animation: mb-fadedown 0.18s ease; }
.mb-hdr-lang-drop a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--cr-text);
  text-decoration: none;
  transition: background var(--cr-transition);
}
.mb-hdr-lang-drop a:hover { background: rgba(255,255,255,0.07); }
.mb-flag { font-size: 1.1rem; }
@keyframes mb-fadedown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.mb-burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: none;
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius-sm);
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.mb-burger-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--cr-text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.mb-burger-btn.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mb-burger-btn.is-active span:nth-child(2) { opacity: 0; }
.mb-burger-btn.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mb-mob-menu {
  display: none;
  position: fixed;
  top: 69px; left: 0; right: 0; bottom: 0;
  background: var(--cr-nav);
  z-index: 999;
  padding: 20px 16px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  width: 100%;
  max-width: 100vw;
}
.mb-mob-menu.is-open { display: flex; animation: mb-slidein 0.22s ease; }
@keyframes mb-slidein {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}
.mb-mob-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cr-text);
  padding: 13px 14px;
  border-radius: var(--cr-radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--cr-border);
  transition: background var(--cr-transition);
}
.mb-mob-menu a:hover { background: rgba(255,255,255,0.05); }
.mb-mob-menu a svg { width: 18px; height: 18px; color: var(--cr-orange); flex-shrink: 0; }
.mb-mob-menu-btns { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.mb-mob-menu-btns .mb-7z2q-btn { flex: 1; min-width: 130px; }
.mb-hero-d5k1 {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100vw;
}
.mb-hero-slider {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
}
.mb-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.mb-hero-slide.is-active { opacity: 1; z-index: 1; }
.mb-hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.mb-hero-slide.is-active .mb-hero-slide-bg { transform: scale(1); }
.mb-hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.6) 60%, rgba(13,13,13,0.1) 100%);
}
.mb-hero-slide-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 16px;
  width: 100%;
  min-width: 0;
}
.mb-hero-slide-content .mb-3k9x-wrap { padding: 0 16px; }
.mb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.4);
  color: var(--cr-orange);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mb-hero-h1 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  overflow-wrap: break-word;
  word-break: break-word;
}
.mb-hero-h1 .mb-hl-orange { color: var(--cr-orange); }
.mb-hero-h1 .mb-hl-green { color: var(--cr-green); }
.mb-hero-desc {
  font-size: 1rem;
  color: rgba(232,232,232,0.85);
  margin-bottom: 28px;
  line-height: 1.65;
  max-width: 480px;
}
.mb-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.mb-hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.mb-hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background var(--cr-transition), transform var(--cr-transition);
  border: none;
}
.mb-hero-dot.is-active { background: var(--cr-orange); transform: scale(1.3); }
.mb-hero-stats {
  position: absolute;
  bottom: 20px;
  right: 16px;
  z-index: 5;
  display: flex;
  gap: 12px;
  max-width: calc(100% - 32px);
  flex-wrap: wrap;
}
.mb-hero-stat {
  background: rgba(20,20,20,0.85);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius-sm);
  padding: 8px 14px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.mb-hero-stat-val { font-size: 1.1rem; font-weight: 700; color: var(--cr-orange); }
.mb-hero-stat-label { font-size: 0.72rem; color: var(--cr-text-muted); margin-top: 2px; }
.mb-toc-a8v3 {
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  padding: 28px 32px;
  margin-bottom: 48px;
}
.mb-toc-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cr-text);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mb-toc-title svg { color: var(--cr-orange); }
.mb-toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
}
.mb-toc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--cr-radius-sm);
  color: var(--cr-text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all var(--cr-transition);
  min-width: 0;
  overflow: hidden;
}
.mb-toc-item:hover {
  color: var(--cr-orange);
  background: rgba(255,107,0,0.07);
  border-color: rgba(255,107,0,0.2);
}
.mb-toc-item svg { width: 16px; height: 16px; color: var(--cr-orange); flex-shrink: 0; }
.mb-toc-item-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,107,0,0.12);
  color: var(--cr-orange);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mb-cas-r9w4 { }
.mb-cas-card {
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  padding: 20px 22px;
  margin-bottom: 16px;
  transition: box-shadow var(--cr-transition), transform var(--cr-transition);
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
}
.mb-cas-card:hover { box-shadow: var(--cr-shadow-orange); transform: translateY(-2px); }
.mb-cas-card--top3 { border-color: rgba(255,107,0,0.4); }
.mb-cas-card--top3::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cr-orange), var(--cr-green));
}
.mb-cas-card--top1 { border-color: rgba(255,200,0,0.5); }
.mb-cas-card--top1::before { background: linear-gradient(90deg, #ffd700, #ff6b00); }
.mb-cas-inner {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: start;
  gap: 16px;
  min-width: 0;
}
.mb-cas-inner > * { min-width: 0; }
.mb-cas-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--cr-orange);
  min-width: 32px;
  line-height: 1;
  padding-top: 4px;
}
.mb-cas-card--top1 .mb-cas-num { color: #ffd700; }
.mb-cas-logo-wrap {
  width: 54px; height: 54px;
  border-radius: var(--cr-radius-sm);
  overflow: hidden;
  border: 1px solid var(--cr-border);
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mb-cas-logo-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.mb-cas-body { min-width: 0; overflow: hidden; }
.mb-cas-top-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.mb-cas-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cr-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.mb-cas-country { font-size: 0.85rem; display: flex; align-items: center; gap: 4px; }
.mb-cas-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cr-orange);
  white-space: nowrap;
  flex-shrink: 0;
}
.mb-cas-rating svg { width: 13px; height: 13px; fill: var(--cr-orange); }
.mb-cas-bonus {
  font-size: 0.88rem;
  color: var(--cr-green);
  font-weight: 600;
  margin-bottom: 10px;
  overflow-wrap: break-word;
}
.mb-cas-bonus span { color: var(--cr-text-muted); font-weight: 400; }
.mb-cas-pros {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.mb-cas-pro {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--cr-text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--cr-border);
  border-radius: 20px;
  padding: 4px 10px;
}
.mb-cas-pro svg { width: 12px; height: 12px; color: var(--cr-green); flex-shrink: 0; }
.mb-cas-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--cr-text-muted);
}
.mb-cas-meta-item { display: flex; align-items: center; gap: 4px; }
.mb-cas-meta-item svg { width: 13px; height: 13px; color: var(--cr-orange); }
.mb-cas-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 130px;
  flex-shrink: 0;
}
.mb-cas-load-more {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.mb-adv-5j7h { }
.mb-adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.mb-adv-card {
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  padding: 24px 20px;
  text-align: center;
  transition: transform var(--cr-transition), box-shadow var(--cr-transition);
}
.mb-adv-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.mb-adv-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,107,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--cr-orange);
}
.mb-adv-icon svg { width: 26px; height: 26px; }
.mb-adv-name { font-size: 0.95rem; font-weight: 700; color: var(--cr-text); margin-bottom: 8px; }
.mb-adv-desc { font-size: 0.82rem; color: var(--cr-text-muted); line-height: 1.55; }
.mb-jack-2m8n { }
.mb-jack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mb-jack-card {
  border-radius: var(--cr-radius);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-width: 0;
}
.mb-jack-card--bronze {
  background: linear-gradient(135deg, #2a1a0d, #3d2410);
  border: 1px solid rgba(205,127,50,0.4);
}
.mb-jack-card--silver {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  border: 1px solid rgba(192,192,192,0.4);
}
.mb-jack-card--gold {
  background: linear-gradient(135deg, #1a1200, #2d2000);
  border: 1px solid rgba(255,215,0,0.5);
}
.mb-jack-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.mb-jack-card--bronze .mb-jack-label { color: #cd7f32; }
.mb-jack-card--silver .mb-jack-label { color: #c0c0c0; }
.mb-jack-card--gold .mb-jack-label { color: #ffd700; }
.mb-jack-amount {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1.1;
  overflow-wrap: break-word;
  word-break: break-word;
}
.mb-jack-card--bronze .mb-jack-amount { color: #cd7f32; }
.mb-jack-card--silver .mb-jack-amount { color: #c0c0c0; }
.mb-jack-card--gold .mb-jack-amount { color: #ffd700; }
.mb-jack-currency { font-size: 0.8rem; color: var(--cr-text-muted); margin-bottom: 20px; }
.mb-jack-players { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px; }
.mb-jack-players-title { font-size: 0.78rem; font-weight: 600; color: var(--cr-text-muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.mb-jack-player {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 8px;
}
.mb-jack-player:last-child { border-bottom: none; }
.mb-jack-player-name { color: var(--cr-text); font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.mb-jack-player-win { font-weight: 700; flex-shrink: 0; }
.mb-jack-card--bronze .mb-jack-player-win { color: #cd7f32; }
.mb-jack-card--silver .mb-jack-player-win { color: #c0c0c0; }
.mb-jack-card--gold .mb-jack-player-win { color: #ffd700; }
.mb-bon-p1e5 { }
.mb-bon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mb-bon-card {
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  overflow: hidden;
  transition: transform var(--cr-transition), box-shadow var(--cr-transition);
  min-width: 0;
}
.mb-bon-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.mb-bon-header {
  background: linear-gradient(135deg, var(--cr-orange-dark), var(--cr-orange));
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mb-bon-casino-logo {
  width: 36px; height: 36px;
  border-radius: 6px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.mb-bon-casino-name { font-size: 0.9rem; font-weight: 700; color: #fff; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mb-bon-casino-tag { font-size: 0.72rem; color: rgba(255,255,255,0.75); }
.mb-bon-body { padding: 18px 20px; }
.mb-bon-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cr-green);
  margin-bottom: 6px;
  line-height: 1.1;
  overflow-wrap: break-word;
}
.mb-bon-desc { font-size: 0.82rem; color: var(--cr-text-muted); margin-bottom: 14px; line-height: 1.5; }
.mb-bon-conditions {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}
.mb-bon-cond {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--cr-text-muted);
}
.mb-bon-cond svg { width: 13px; height: 13px; color: var(--cr-green); flex-shrink: 0; }
.mb-demo-x3v9 {
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.mb-demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid var(--cr-border);
  flex-wrap: wrap;
  gap: 12px;
}
.mb-demo-title { font-size: 1rem; font-weight: 700; color: var(--cr-text); display: flex; align-items: center; gap: 8px; }
.mb-demo-title svg { color: var(--cr-orange); }
.mb-demo-frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  overflow: hidden;
}
.mb-demo-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.mb-demo-frame-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: radial-gradient(ellipse at center, #1a0f00 0%, #0d0d0d 100%);
}
.mb-demo-frame-placeholder svg { color: var(--cr-orange); opacity: 0.4; }
.mb-demo-play-btn {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--cr-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: transform var(--cr-transition), box-shadow var(--cr-transition);
  box-shadow: var(--cr-shadow-orange);
}
.mb-demo-play-btn:hover { transform: scale(1.1); box-shadow: 0 0 40px rgba(255,107,0,0.6); }
.mb-demo-play-btn svg { width: 30px; height: 30px; color: #fff; margin-left: 4px; }
.mb-demo-caption { font-size: 0.9rem; color: var(--cr-text-muted); }
.mb-demo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-top: 1px solid var(--cr-border);
  flex-wrap: wrap;
  gap: 10px;
}
.mb-demo-info { font-size: 0.8rem; color: var(--cr-text-muted); display: flex; gap: 16px; flex-wrap: wrap; }
.mb-demo-info span { display: flex; align-items: center; gap: 5px; }
.mb-demo-info svg { width: 13px; height: 13px; color: var(--cr-orange); }
.mb-review-k2p7 {
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  padding: 36px 40px;
  overflow-x: hidden;
  min-width: 0;
  width: 100%;
}
.mb-review-k2p7 h2 { font-size: 1.5rem; font-weight: 700; color: var(--cr-text); margin: 32px 0 12px; line-height: 1.3; }
.mb-review-k2p7 h2:first-child { margin-top: 0; }
.mb-review-k2p7 h3 { font-size: 1.2rem; font-weight: 600; color: var(--cr-text); margin: 24px 0 10px; }
.mb-review-k2p7 h4 { font-size: 1rem; font-weight: 600; color: var(--cr-orange); margin: 18px 0 8px; }
.mb-review-k2p7 p { color: var(--cr-text-muted); line-height: 1.75; margin-bottom: 16px; font-size: 0.95rem; overflow-wrap: break-word; word-break: break-word; }
.mb-review-k2p7 ul, .mb-review-k2p7 ol {
  padding-left: 20px;
  margin-bottom: 16px;
  color: var(--cr-text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}
.mb-review-k2p7 ul { list-style: disc; }
.mb-review-k2p7 ol { list-style: decimal; }
.mb-review-k2p7 li { margin-bottom: 6px; }
.mb-review-k2p7 a { color: var(--cr-orange); }
.mb-review-k2p7 strong { color: var(--cr-text); font-weight: 600; }
.mb-review-k2p7 em { color: #c8c8c8; }
.mb-review-k2p7 blockquote {
  border-left: 3px solid var(--cr-orange);
  padding: 12px 20px;
  background: rgba(255,107,0,0.06);
  border-radius: 0 var(--cr-radius-sm) var(--cr-radius-sm) 0;
  margin: 16px 0;
  color: var(--cr-text-muted);
  font-style: italic;
}
.mb-review-k2p7 table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
  font-size: 0.88rem;
  overflow-x: auto;
  display: block;
  max-width: 100%;
}
.mb-review-k2p7 th {
  background: rgba(255,107,0,0.1);
  color: var(--cr-orange);
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--cr-border);
  white-space: nowrap;
}
.mb-review-k2p7 td {
  padding: 10px 16px;
  text-align: left;
  border: 1px solid var(--cr-border);
  color: var(--cr-text-muted);
  vertical-align: top;
}
.mb-review-k2p7 tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.mb-review-k2p7 img { border-radius: var(--cr-radius-sm); margin: 12px 0; max-width: 100%; }
.mb-review-k2p7 code {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--cr-border);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.85em;
  color: var(--cr-green);
  font-family: 'Courier New', monospace;
  overflow-wrap: break-word;
  word-break: break-all;
}
.mb-review-k2p7 pre {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius-sm);
  padding: 16px;
  overflow-x: auto;
  margin: 16px 0;
  max-width: 100%;
}
.mb-review-k2p7 hr { border: none; border-top: 1px solid var(--cr-border); margin: 28px 0; }
.mb-rev-f6g8 { }
.mb-rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.mb-rev-card {
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  padding: 22px 20px;
  transition: transform var(--cr-transition);
  min-width: 0;
}
.mb-rev-card:hover { transform: translateY(-2px); }
.mb-rev-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.mb-rev-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cr-border);
  flex-shrink: 0;
}
.mb-rev-name { font-size: 0.9rem; font-weight: 700; color: var(--cr-text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mb-rev-date { font-size: 0.75rem; color: var(--cr-text-muted); }
.mb-rev-stars { display: flex; gap: 2px; margin-bottom: 10px; }
.mb-rev-stars svg { width: 14px; height: 14px; fill: #ffd700; }
.mb-rev-text { font-size: 0.85rem; color: var(--cr-text-muted); line-height: 1.65; overflow-wrap: break-word; }
.mb-rev-form-wrap {
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  padding: 28px 32px;
}
.mb-rev-form-title { font-size: 1.05rem; font-weight: 700; color: var(--cr-text); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.mb-rev-form-title svg { color: var(--cr-orange); }
.mb-form-group { margin-bottom: 16px; }
.mb-form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cr-text-muted);
  margin-bottom: 6px;
}
.mb-form-control {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius-sm);
  color: var(--cr-text);
  font-family: var(--cr-font);
  font-size: 0.9rem;
  padding: 11px 14px;
  transition: border-color var(--cr-transition), box-shadow var(--cr-transition);
  outline: none;
  resize: vertical;
  max-width: 100%;
  box-sizing: border-box;
}
.mb-form-control:focus {
  border-color: var(--cr-orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.12);
}
.mb-form-control::placeholder { color: #555; }
.mb-form-success {
  display: none;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--cr-radius-sm);
  padding: 14px 18px;
  color: var(--cr-green);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 12px;
}
.mb-form-success.is-visible { display: block; }
.mb-auth-q4n1 {
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: start;
  min-width: 0;
  width: 100%;
}
.mb-auth-photo {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--cr-orange);
}
.mb-auth-name { font-size: 1.1rem; font-weight: 700; color: var(--cr-text); margin-bottom: 4px; }
.mb-auth-role { font-size: 0.82rem; color: var(--cr-orange); font-weight: 600; margin-bottom: 10px; }
.mb-auth-bio { font-size: 0.88rem; color: var(--cr-text-muted); line-height: 1.6; margin-bottom: 14px; overflow-wrap: break-word; }
.mb-auth-links { display: flex; gap: 10px; flex-wrap: wrap; }
.mb-auth-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--cr-text-muted);
  border: 1px solid var(--cr-border);
  border-radius: 20px;
  padding: 5px 12px;
  text-decoration: none;
  transition: all var(--cr-transition);
}
.mb-auth-link:hover { color: var(--cr-orange); border-color: var(--cr-orange); }
.mb-auth-link svg { width: 14px; height: 14px; }
.mb-ftr-7c3k {
  background: var(--cr-nav);
  border-top: 1px solid var(--cr-border);
  margin-top: 60px;
  width: 100%;
  overflow-x: hidden;
}
.mb-ftr-top {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr;
  gap: 32px;
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--cr-border);
  min-width: 0;
}
.mb-ftr-top > * { min-width: 0; }
.mb-ftr-brand-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.mb-ftr-brand-logo img { height: 36px; border-radius: 6px; flex-shrink: 0; }
.mb-ftr-brand-name { font-size: 1rem; font-weight: 800; color: var(--cr-text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mb-ftr-brand-name span { color: var(--cr-orange); }
.mb-ftr-desc { font-size: 0.82rem; color: var(--cr-text-muted); line-height: 1.6; overflow-wrap: break-word; }
.mb-ftr-col-title { font-size: 0.85rem; font-weight: 700; color: var(--cr-text); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.mb-ftr-links { display: flex; flex-direction: column; gap: 8px; }
.mb-ftr-links a { font-size: 0.84rem; color: var(--cr-text-muted); text-decoration: none; transition: color var(--cr-transition); overflow-wrap: break-word; }
.mb-ftr-links a:hover { color: var(--cr-orange); }
.mb-ftr-bottom { padding: 24px 0; }
.mb-ftr-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px;
  justify-content: space-between;
}
.mb-ftr-payments { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.mb-ftr-payment-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--cr-border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cr-text-muted);
  white-space: nowrap;
}
.mb-ftr-licenses { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.mb-ftr-license-badge {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cr-green);
  white-space: nowrap;
}
.mb-ftr-legal {
  width: 100%;
  font-size: 0.76rem;
  color: #555;
  line-height: 1.65;
  border-top: 1px solid var(--cr-border);
  padding-top: 20px;
  margin-top: 4px;
  overflow-wrap: break-word;
}
.mb-ftr-legal a { color: #666; text-decoration: underline; }
.mb-ftr-legal a:hover { color: var(--cr-text-muted); }
.mb-ftr-copyright {
  font-size: 0.8rem;
  color: #555;
  margin-top: 10px;
}
.mb-ftr-provider {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--cr-text-muted);
}
.mb-ftr-provider img { height: 24px; filter: brightness(0.7); }
.mb-wgt-c5d2 {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  z-index: 900;
  background: linear-gradient(90deg, rgba(20,20,20,0.97), rgba(26,26,26,0.97));
  border-top: 2px solid var(--cr-orange);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
  flex-wrap: wrap;
  overflow: hidden;
}
.mb-wgt-text {
  font-size: 0.88rem;
  color: var(--cr-text);
  font-weight: 500;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mb-wgt-text strong { color: var(--cr-green); }
.mb-wgt-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--cr-text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 4px;
  transition: color var(--cr-transition);
}
.mb-wgt-close:hover { color: var(--cr-text); }
.mb-wgt-c5d2.is-hidden { display: none; }
.mb-sep-wave {
  height: 60px;
  overflow: hidden;
  position: relative;
  margin: -1px 0;
}
.mb-sep-wave svg { width: 100%; height: 100%; }
.mb-faq-s9b6 { }
.mb-faq-item {
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}
.mb-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cr-text);
  gap: 12px;
  transition: background var(--cr-transition);
}
.mb-faq-question:hover { background: rgba(255,255,255,0.03); }
.mb-faq-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,107,0,0.12);
  color: var(--cr-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--cr-transition);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}
.mb-faq-item.is-open .mb-faq-icon { transform: rotate(45deg); }
.mb-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--cr-transition);
  padding: 0 20px;
  font-size: 0.88rem;
  color: var(--cr-text-muted);
  line-height: 1.7;
  overflow-wrap: break-word;
}
.mb-faq-item.is-open .mb-faq-answer { max-height: 600px; padding: 0 20px 16px; }
.mb-ginfo-7x2r {
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  overflow: hidden;
  width: 100%;
}
.mb-ginfo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.mb-ginfo-row {
  display: contents;
}
.mb-ginfo-cell {
  padding: 11px 18px;
  font-size: 0.86rem;
  border-bottom: 1px solid var(--cr-border);
  border-right: 1px solid var(--cr-border);
  min-width: 0;
  overflow-wrap: break-word;
}
.mb-ginfo-cell:nth-child(even) { border-right: none; }
.mb-ginfo-key { color: var(--cr-text-muted); font-weight: 500; }
.mb-ginfo-val { color: var(--cr-text); font-weight: 600; }
.mb-ginfo-val .mb-badge-green {
  display: inline-block;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  color: var(--cr-green);
  border-radius: 20px;
  padding: 1px 8px;
  font-size: 0.78rem;
}
.mb-slider-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.mb-slider-track {
  display: flex;
  transition: transform 0.4s ease;
  width: 100%;
}
.mb-slider-btns { display: flex; justify-content: center; gap: 10px; margin-top: 14px; }
.mb-slider-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.3);
  color: var(--cr-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--cr-transition);
}
.mb-slider-btn:hover { background: var(--cr-orange); color: #fff; }
.mb-slider-btn svg { width: 16px; height: 16px; }
.mb-bread-7j3s {
  padding: 12px 0;
  font-size: 0.8rem;
  color: var(--cr-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.mb-bread-7j3s a { color: var(--cr-text-muted); text-decoration: none; }
.mb-bread-7j3s a:hover { color: var(--cr-orange); }
.mb-bread-sep { color: #444; }
.mb-txt-orange { color: var(--cr-orange); }
.mb-txt-green { color: var(--cr-green); }
.mb-txt-muted { color: var(--cr-text-muted); }
.mb-text-center { text-align: center; }
.mb-mt-8 { margin-top: 8px; }
.mb-mt-16 { margin-top: 16px; }
.mb-mt-24 { margin-top: 24px; }
.mb-mt-32 { margin-top: 32px; }
.mb-mt-48 { margin-top: 48px; }
.mb-mb-8 { margin-bottom: 8px; }
.mb-mb-16 { margin-bottom: 16px; }
.mb-mb-24 { margin-bottom: 24px; }
.mb-mb-32 { margin-bottom: 32px; }
.mb-mb-48 { margin-bottom: 48px; }
.mb-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.2);
  color: var(--cr-orange);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 600;
}
.mb-tag--green {
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.2);
  color: var(--cr-green);
}
.mb-rtp-bar {
  height: 6px;
  background: var(--cr-border);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 4px;
}
.mb-rtp-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cr-orange), var(--cr-green));
  border-radius: 3px;
  transition: width 1.2s ease;
}
.wp-block-group { display: block; }
.entry-content { display: block; }
.wp-site-blocks { display: block; }
.elementor-widget-container { display: block; }
@keyframes mb-fadeup {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.mb-fadein { opacity: 0; animation: mb-fadeup 0.6s ease forwards; }
.mb-fadein-d1 { animation-delay: 0.1s; }
.mb-fadein-d2 { animation-delay: 0.2s; }
.mb-fadein-d3 { animation-delay: 0.3s; }
.mb-fadein-d4 { animation-delay: 0.4s; }
@keyframes mb-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.mb-float { animation: mb-float 3s ease-in-out infinite; }
@keyframes mb-glow-orange {
  0%, 100% { box-shadow: 0 0 10px rgba(255,107,0,0.3); }
  50% { box-shadow: 0 0 30px rgba(255,107,0,0.6); }
}
.mb-glow { animation: mb-glow-orange 2.5s ease-in-out infinite; }
.mb-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(20,20,20,0.7);
  border: 1px solid var(--cr-border);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cr-text);
  cursor: pointer;
  transition: background var(--cr-transition), color var(--cr-transition);
  backdrop-filter: blur(4px);
}
.mb-hero-arrow:hover { background: var(--cr-orange); color: #fff; border-color: var(--cr-orange); }
.mb-hero-arrow--prev { left: 16px; }
.mb-hero-arrow--next { right: 16px; }
.mb-demo-wrap {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  min-width: 0;
  width: 100%;
}
.mb-demo-wrap > * { min-width: 0; flex: 1 1 300px; }
.mb-3k9x-sub {
  color: var(--cr-text-muted);
  font-size: 0.95rem;
  margin-bottom: 36px;
  line-height: 1.6;
}
.mb-bonus-slider-wrap { position: relative; overflow: hidden; }
.mb-bonus-slider { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.mb-review-card {
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  padding: 22px 20px;
  transition: transform var(--cr-transition);
  min-width: 0;
}
.mb-review-card:hover { transform: translateY(-2px); }
.mb-review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.mb-review-meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.mb-review-name { font-size: 0.9rem; font-weight: 700; color: var(--cr-text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mb-review-stars { display: flex; gap: 3px; }
.mb-review-text { font-size: 0.85rem; color: var(--cr-text-muted); line-height: 1.65; overflow-wrap: break-word; }
.mb-review-form-wrap {
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  padding: 28px 32px;
  margin-top: 32px;
}
.mb-review-form-title { font-size: 1.05rem; font-weight: 700; color: var(--cr-text); margin-bottom: 20px; }
.mb-form-field { margin-bottom: 16px; }
.mb-form-input, .mb-form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius-sm);
  color: var(--cr-text);
  font-family: var(--cr-font);
  font-size: 0.9rem;
  padding: 11px 14px;
  transition: border-color var(--cr-transition), box-shadow var(--cr-transition);
  outline: none;
  resize: vertical;
  max-width: 100%;
  box-sizing: border-box;
}
.mb-form-input:focus, .mb-form-textarea:focus {
  border-color: var(--cr-orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.12);
}
.mb-form-input::placeholder, .mb-form-textarea::placeholder { color: #555; }
.mb-author-card {
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: start;
  min-width: 0;
  width: 100%;
}
.mb-author-card > * { min-width: 0; }
.mb-author-photo { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; border: 3px solid var(--cr-orange); }
.mb-author-photo-wrap { display: flex; justify-content: center; }
.mb-author-name { font-size: 1.1rem; font-weight: 700; color: var(--cr-text); margin-bottom: 4px; overflow-wrap: break-word; }
.mb-author-position { font-size: 0.82rem; color: var(--cr-orange); font-weight: 600; margin-bottom: 10px; }
.mb-author-bio { font-size: 0.88rem; color: var(--cr-text-muted); line-height: 1.6; margin-bottom: 14px; overflow-wrap: break-word; }
.mb-author-links { display: flex; gap: 10px; flex-wrap: wrap; }
.mb-author-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--cr-text-muted);
  border: 1px solid var(--cr-border);
  border-radius: 20px;
  padding: 5px 12px;
  text-decoration: none;
  transition: all var(--cr-transition);
}
.mb-author-link:hover { color: var(--cr-orange); border-color: var(--cr-orange); }
.mb-faq-list { }
.mb-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cr-text);
  gap: 12px;
  transition: background var(--cr-transition);
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--cr-font);
  min-width: 0;
}
.mb-faq-q:hover { background: rgba(255,255,255,0.03); }
.mb-faq-chevron { flex-shrink: 0; transition: transform var(--cr-transition); color: var(--cr-orange); }
.mb-faq-item.is-open .mb-faq-chevron { transform: rotate(180deg); }
.mb-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--cr-transition);
  padding: 0 20px;
  font-size: 0.88rem;
  color: var(--cr-text-muted);
  line-height: 1.7;
  overflow-wrap: break-word;
}
.mb-faq-item.is-open .mb-faq-a { max-height: 600px; padding: 0 20px 16px; }
.mb-faq-a[hidden] { display: block !important; }
.mb-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.mb-casino-card { background: var(--cr-card); border: 1px solid var(--cr-border); border-radius: var(--cr-radius); padding: 20px 22px; margin-bottom: 16px; min-width: 0; }
.mb-casino-card--top .mb-casino-card--top1 { border-color: rgba(255,200,0,0.5); }
.mb-casino-rank { font-size: 1.4rem; font-weight: 800; color: var(--cr-orange); }
.mb-casino-logo-wrap { width: 80px; height: 50px; background: #222; border-radius: var(--cr-radius-sm); overflow: hidden; flex-shrink: 0; }
.mb-casino-info { flex: 1; min-width: 0; }
.mb-casino-header-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
.mb-casino-name { font-size: 1rem; font-weight: 700; color: var(--cr-text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.mb-casino-country { font-size: 0.85rem; }
.mb-casino-rating { background: rgba(255,107,0,0.12); border: 1px solid rgba(255,107,0,0.25); border-radius: 20px; padding: 3px 10px; font-size: 0.82rem; font-weight: 700; color: var(--cr-orange); flex-shrink: 0; }
.mb-casino-bonus { font-size: 0.88rem; color: var(--cr-green); font-weight: 600; margin-bottom: 10px; overflow-wrap: break-word; }
.mb-casino-pros { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.mb-casino-pros span { font-size: 0.8rem; color: var(--cr-text-muted); background: rgba(255,255,255,0.04); border: 1px solid var(--cr-border); border-radius: 20px; padding: 4px 10px; }
.mb-casino-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: var(--cr-text-muted); margin-bottom: 12px; }
.mb-casino-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.mb-jackpot-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.mb-jackpot-card { border-radius: var(--cr-radius); padding: 28px 20px; text-align: center; min-width: 0; }
.mb-jackpot-card--bronze { background: linear-gradient(135deg,#2a1a0d,#3d2410); border: 1px solid rgba(205,127,50,0.4); }
.mb-jackpot-card--silver { background: linear-gradient(135deg,#1a1a1a,#2d2d2d); border: 1px solid rgba(192,192,192,0.4); }
.mb-jackpot-card--gold { background: linear-gradient(135deg,#1a1200,#2d2000); border: 1px solid rgba(255,215,0,0.5); }
.mb-jackpot-badge { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.mb-jackpot-card--bronze .mb-jackpot-badge { color: #cd7f32; }
.mb-jackpot-card--silver .mb-jackpot-badge { color: #c0c0c0; }
.mb-jackpot-card--gold .mb-jackpot-badge { color: #ffd700; }
.mb-jackpot-amount { font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 800; margin-bottom: 4px; overflow-wrap: break-word; }
.mb-jackpot-card--bronze .mb-jackpot-amount { color: #cd7f32; }
.mb-jackpot-card--silver .mb-jackpot-amount { color: #c0c0c0; }
.mb-jackpot-card--gold .mb-jackpot-amount { color: #ffd700; }
.mb-jackpot-label { font-size: 0.8rem; color: var(--cr-text-muted); margin-bottom: 20px; }
.mb-jackpot-players { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px; }
.mb-jackpot-players-title { font-size: 0.78rem; font-weight: 600; color: var(--cr-text-muted); margin-bottom: 10px; text-transform: uppercase; }
.mb-jackpot-player { display: flex; justify-content: space-between; font-size: 0.82rem; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.05); gap: 8px; }
.mb-jackpot-player:last-child { border-bottom: none; }
.mb-jackpot-player-nick { color: var(--cr-text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.mb-jackpot-player-win { font-weight: 700; flex-shrink: 0; }
.mb-jackpot-card--bronze .mb-jackpot-player-win { color: #cd7f32; }
.mb-jackpot-card--silver .mb-jackpot-player-win { color: #c0c0c0; }
.mb-jackpot-card--gold .mb-jackpot-player-win { color: #ffd700; }
.mb-bonus-card { background: var(--cr-card); border: 1px solid var(--cr-border); border-radius: var(--cr-radius); overflow: hidden; min-width: 0; }
.mb-bonus-casino { display: flex; align-items: center; gap: 10px; padding: 16px 20px; border-bottom: 1px solid var(--cr-border); }
.mb-bonus-casino img { border-radius: 6px; flex-shrink: 0; }
.mb-bonus-casino span { font-weight: 700; color: var(--cr-text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.mb-bonus-title { font-size: 0.85rem; font-weight: 600; color: var(--cr-text-muted); padding: 10px 20px 0; }
.mb-bonus-amount { font-size: 1.4rem; font-weight: 800; color: var(--cr-green); padding: 6px 20px 0; overflow-wrap: break-word; }
.mb-bonus-details { padding: 12px 20px 0; display: flex; flex-direction: column; gap: 6px; }
.mb-bonus-detail-row { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--cr-text-muted); gap: 8px; }
.mb-bonus-detail-row strong { color: var(--cr-text); flex-shrink: 0; }
.mb-bonus-card .mb-7z2q-btn { margin: 16px 20px 20px; width: calc(100% - 40px); }
.mb-decor-9xvz { position: absolute; pointer-events: none; opacity: 0; width: 1px; height: 1px; }
.mb-ghost-element { display: none; visibility: hidden; }
.mb-unused-grid { grid-template-areas: 'a b'; column-gap: 0; }
.mb-unused-flex { flex-flow: row dense; order: 999; }
.crr-data-node { content: ''; display: none; }
.crr-wp-hook { background: transparent; border: 0; clip: rect(0,0,0,0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
#review-section { }
#review-section > h2.mb-3k9x-heading {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 500;
  color: var(--cr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
#review-section > h2.mb-3k9x-heading span { color: var(--cr-orange); }
#review-section h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--cr-text);
  line-height: 1.2;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 20px;
  overflow-wrap: break-word;
  word-break: break-word;
}
#review-section h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--cr-orange), var(--cr-green));
  border-radius: 2px;
}
#review-section h2:not(.mb-3k9x-heading) {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--cr-text);
  margin: 40px 0 12px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-wrap: break-word;
  word-break: break-word;
}
#review-section h2:not(.mb-3k9x-heading)::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.2em;
  background: linear-gradient(180deg, var(--cr-orange), var(--cr-green));
  border-radius: 2px;
  flex-shrink: 0;
}
#review-section p {
  color: var(--cr-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 18px;
  overflow-wrap: break-word;
  word-break: break-word;
}
#review-section p:first-of-type {
  font-size: 1rem;
  color: rgba(232, 232, 232, 0.85);
  border-left: 3px solid var(--cr-orange);
  padding: 14px 20px;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 0 var(--cr-radius-sm) var(--cr-radius-sm) 0;
  margin-top: 24px;
}
#review-section a {
  color: var(--cr-orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 107, 0, 0.3);
  transition: color var(--cr-transition), border-color var(--cr-transition);
  overflow-wrap: break-word;
  word-break: break-all;
}
#review-section a:hover {
  color: #ff8c33;
  border-color: rgba(255, 140, 51, 0.6);
}
#review-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.88rem;
  background: var(--cr-card);
  border-radius: var(--cr-radius);
  overflow: hidden;
  border: 1px solid var(--cr-border);
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
#review-section table th {
  background: rgba(255, 107, 0, 0.1);
  color: var(--cr-orange);
  font-weight: 700;
  padding: 12px 18px;
  text-align: left;
  border-bottom: 1px solid var(--cr-border);
  border-right: 1px solid var(--cr-border);
  white-space: nowrap;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#review-section table th:last-child { border-right: none; }
#review-section table td {
  padding: 10px 18px;
  border-bottom: 1px solid var(--cr-border);
  border-right: 1px solid var(--cr-border);
  color: var(--cr-text-muted);
  vertical-align: middle;
  line-height: 1.5;
  transition: background var(--cr-transition);
}
#review-section table td:last-child { border-right: none; color: var(--cr-text); font-weight: 600; }
#review-section table tr:last-child td { border-bottom: none; }
#review-section table tr:nth-child(even) td { background: rgba(255, 255, 255, 0.02); }
#review-section table tr:hover td { background: rgba(255, 107, 0, 0.04); }
#review-section ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#review-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--cr-text-muted);
  line-height: 1.7;
  padding: 12px 16px;
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius-sm);
  transition: border-color var(--cr-transition), transform var(--cr-transition);
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
}
#review-section ul li:hover {
  border-color: rgba(255, 107, 0, 0.25);
  transform: translateX(3px);
}
#review-section ul li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--cr-orange);
  margin-top: 7px;
  box-shadow: 0 0 6px rgba(255, 107, 0, 0.5);
}
#review-section ul li a {
  font-weight: 600;
  word-break: break-all;
}
#review-section ul li:has(a) {
  background: rgba(255, 107, 0, 0.04);
  border-color: rgba(255, 107, 0, 0.15);
}
@media (max-width: 1024px) {
  .mb-ftr-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .mb-jack-grid { grid-template-columns: repeat(3, 1fr); }
  .mb-jackpot-grid { grid-template-columns: repeat(3, 1fr); }
  .mb-hdr-nav a { padding: 8px 8px; font-size: 0.82rem; }
}
@media (max-width: 768px) {
  .mb-hdr-nav { display: none; }
  .mb-burger-btn { display: flex; margin-left: auto; }
  .mb-hdr-8f2p-inner { grid-template-columns: auto 1fr auto auto; }
  .mb-hdr-online { display: none; }
  .mb-hero-stats { display: none; }
  .mb-hero-d5k1 { min-height: 400px; }
  .mb-hero-slider { min-height: 400px; }
  .mb-hero-arrow { display: none; }
  .mb-cas-inner { grid-template-columns: 44px 1fr; }
  .mb-cas-actions { flex-direction: row; min-width: unset; flex-wrap: wrap; }
  .mb-jack-grid { grid-template-columns: 1fr; }
  .mb-jackpot-grid { grid-template-columns: 1fr; }
  .mb-bon-grid { grid-template-columns: 1fr; }
  .mb-bonus-slider { grid-template-columns: 1fr; }
  .mb-rev-grid { grid-template-columns: 1fr; }
  .mb-reviews-grid { grid-template-columns: 1fr; }
  .mb-adv-grid { grid-template-columns: repeat(2, 1fr); }
  .mb-ftr-top { grid-template-columns: 1fr 1fr; }
  .mb-auth-q4n1 { grid-template-columns: 1fr; text-align: center; }
  .mb-auth-photo { width: 70px; height: 70px; margin: 0 auto; }
  .mb-auth-links { justify-content: center; }
  .mb-author-card { grid-template-columns: 1fr; }
  .mb-author-photo-wrap { justify-content: flex-start; }
  .mb-review-k2p7 { padding: 22px 18px; }
  .mb-rev-form-wrap { padding: 22px 18px; }
  .mb-review-form-wrap { padding: 22px 18px; }
  .mb-ginfo-grid { grid-template-columns: 1fr; }
  .mb-ginfo-cell:nth-child(even) { border-right: 1px solid var(--cr-border); }
  .mb-ginfo-cell:nth-child(odd) { border-right: 1px solid var(--cr-border); }
  .mb-demo-wrap { flex-direction: column; }
  .mb-demo-wrap > * { flex: 1 1 100%; }
  .mb-toc-a8v3 { padding: 20px 18px; }
  #review-section h1 { font-size: clamp(1.35rem, 5vw, 1.8rem); }
  #review-section table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  #review-section p:first-of-type {
    padding: 12px 14px;
  }
  #review-section ul li {
    padding: 10px 12px;
  }
}
@media (max-width: 480px) {
  .mb-hero-h1 { font-size: 1.5rem; }
  .mb-adv-grid { grid-template-columns: repeat(2, 1fr); }
  .mb-ftr-top { grid-template-columns: 1fr; }
  .mb-3k9x-section { padding: 40px 0; }
  .mb-3k9x-section-sm { padding: 28px 0; }
  .mb-toc-grid { grid-template-columns: 1fr; }
  .mb-cas-actions { flex-direction: column; }
  .mb-wgt-c5d2 {
    padding: 10px 40px 10px 12px;
    gap: 8px;
    justify-content: flex-start;
  }
  .mb-wgt-c5d2 .mb-wgt-text {
    white-space: normal;
    font-size: 0.8rem;
  }
  .mb-wgt-c5d2 .mb-7z2q-btn {
    font-size: 0.8rem;
    padding: 8px 14px;
  }
  #review-section h2:not(.mb-3k9x-heading) {
    font-size: 1.15rem;
  }
  .mb-hero-btns { flex-direction: column; align-items: flex-start; }
  .mb-hero-btns .mb-7z2q-btn { width: 100%; justify-content: center; }
  .mb-toc-a8v3 { padding: 16px 14px; }
  .mb-rev-form-wrap { padding: 18px 14px; }
  .mb-review-form-wrap { padding: 18px 14px; }
  .mb-review-k2p7 { padding: 18px 14px; }
  .mb-auth-q4n1 { padding: 20px 16px; }
  .mb-author-card { padding: 20px 16px; }
  .skjdfs { display: none; }
}
body { padding-bottom: 68px; }