:root {
  --clr-bg: #041121;
  --clr-header: #052240;
  --clr-btn-login: #082B53;
  --clr-btn-signup: #31CD68;
  --clr-btn-signup-hover: #27b358;
  --clr-accent: #31CD68;
  --clr-text: #e8edf5;
  --clr-text-muted: #8fa3bb;
  --clr-border: rgba(49,205,104,0.18);
  --clr-card: #071a30;
  --clr-card-hover: #0a2240;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
  --font-main: 'Inter', 'Roboto', Arial, sans-serif;
  --shadow-card: 0 4px 32px rgba(0,0,0,0.35);
  --shadow-btn: 0 2px 12px rgba(49,205,104,0.25);
}

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

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

body {
  font-family: var(--font-main);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }
ul, ol { list-style: none; }

.x4k2a { display: none; visibility: hidden; }
.wp-site-icon { display: none; }
.elementor-hidden { opacity: 0; pointer-events: none; }
.wp-block-spacer { display: block; height: 1px; }

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

.lb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.lb-btn:hover { transform: translateY(-1px); }
.lb-btn:active { transform: translateY(0); }

.lb-btn--login {
  background: var(--clr-btn-login);
  color: #c5d9ef;
  border: 1px solid rgba(255,255,255,0.12);
}
.lb-btn--login:hover { background: #0d3a6e; color: #fff; }

.lb-btn--signup {
  background: var(--clr-btn-signup);
  color: #041121;
  box-shadow: var(--shadow-btn);
}
.lb-btn--signup:hover { background: var(--clr-btn-signup-hover); color: #041121; }

.lb-btn--lg {
  padding: 14px 36px;
  font-size: 17px;
  border-radius: var(--radius-md);
}

.lb-btn--outline {
  background: transparent;
  border: 2px solid var(--clr-accent);
  color: var(--clr-accent);
}
.lb-btn--outline:hover { background: var(--clr-accent); color: #041121; }

.lb-hdr {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(49,205,104,0.12);
  box-shadow: 0 2px 20px rgba(0,0,0,0.45);
}

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

.lb-hdr__logo { flex-shrink: 0; }
.lb-hdr__logo img { height: 40px; width: auto; object-fit: contain; }

.lb-hdr__nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }

.lb-hdr__nav a {
  color: #aac4e0;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.lb-hdr__nav a:hover { color: #fff; background: rgba(255,255,255,0.07); }

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

.lb-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--clr-text-muted);
  white-space: nowrap;
}
.lb-online__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-accent);
  box-shadow: 0 0 6px var(--clr-accent);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.lb-online__count { font-weight: 700; color: var(--clr-accent); }

.lb-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.lb-burger span {
  display: block;
  height: 2px;
  background: #c5d9ef;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.lb-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lb-burger.is-open span:nth-child(2) { opacity: 0; }
.lb-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lb-mob-menu {
  display: none;
  flex-direction: column;
  background: var(--clr-header);
  border-top: 1px solid rgba(49,205,104,0.12);
  padding: 16px 0;
  animation: slideDown 0.2s ease;
}
.lb-mob-menu.is-open { display: flex; }
@keyframes slideDown { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }
.lb-mob-menu a {
  color: #aac4e0;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.lb-mob-menu a:hover { color: #fff; background: rgba(255,255,255,0.05); }

.lb-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-bg);
}
.lb-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.lb-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,17,33,0.92) 40%, rgba(4,17,33,0.45) 100%);
  z-index: 1;
}
.lb-hero__content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 60px 0;
}
.lb-hero__badge {
  display: inline-block;
  background: rgba(49,205,104,0.15);
  border: 1px solid rgba(49,205,104,0.35);
  color: var(--clr-accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.lb-hero__title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.lb-hero__title span { color: var(--clr-accent); }
.lb-hero__sub {
  font-size: 17px;
  color: #c0d5eb;
  margin-bottom: 32px;
  line-height: 1.6;
}
.lb-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.lb-hero__note {
  margin-top: 14px;
  font-size: 12px;
  color: #6a8fad;
}

.lb-sec {
  padding: 72px 0;
}
.lb-sec--alt { background: rgba(5,34,64,0.35); }

.lb-sec__head {
  text-align: center;
  margin-bottom: 48px;
}
.lb-sec__label {
  display: inline-block;
  color: var(--clr-accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 10px;
}
.lb-sec__title {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.lb-sec__desc {
  margin-top: 10px;
  font-size: 16px;
  color: var(--clr-text-muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.lb-app-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.lb-app-info { flex: 1; min-width: 0; }
.lb-app-dl { flex-shrink: 0; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }

.lb-table-wrap { overflow-x: auto; border-radius: var(--radius-md); }
.lb-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--clr-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.lb-table th, .lb-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
}
.lb-table th {
  background: rgba(5,34,64,0.8);
  color: var(--clr-text-muted);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
}
.lb-table td { color: var(--clr-text); font-weight: 500; }
.lb-table td:last-child { color: #fff; }
.lb-table tr:last-child td { border-bottom: none; }
.lb-table tr:hover td { background: rgba(255,255,255,0.02); }
.lb-table .lb-table__val--green { color: var(--clr-accent); font-weight: 700; }

.lb-dl-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 14px 22px;
  color: var(--clr-text);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  min-width: 200px;
}
.lb-dl-btn:hover { background: var(--clr-card-hover); border-color: var(--clr-accent); color: #fff; transform: translateY(-2px); }
.lb-dl-btn__icon { font-size: 26px; flex-shrink: 0; }
.lb-dl-btn__text { display: flex; flex-direction: column; }
.lb-dl-btn__sub { font-size: 11px; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 0.8px; }
.lb-dl-btn__name { font-size: 16px; font-weight: 700; color: #fff; }

.lb-video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #000;
  aspect-ratio: 16/9;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--clr-border);
}
.lb-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.lb-bonuses-grid {
  display: flex;
  gap: 24px;
}
.lb-bonus-card {
  flex: 1;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.lb-bonus-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(49,205,104,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.lb-bonus-card:hover { transform: translateY(-4px); border-color: rgba(49,205,104,0.4); box-shadow: 0 8px 40px rgba(49,205,104,0.12); }

.lb-bonus-card__icon { font-size: 40px; line-height: 1; }
.lb-bonus-card__tag {
  display: inline-block;
  background: rgba(49,205,104,0.12);
  color: var(--clr-accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
  align-self: flex-start;
}
.lb-bonus-card__title { font-size: 20px; font-weight: 800; color: #fff; line-height: 1.2; }
.lb-bonus-card__val { font-size: 30px; font-weight: 900; color: var(--clr-accent); line-height: 1; }
.lb-bonus-card__desc { font-size: 14px; color: var(--clr-text-muted); line-height: 1.6; flex: 1; }
.lb-bonus-card .lb-btn { margin-top: auto; align-self: flex-start; }

.lb-wheel-area {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
}
.lb-wheel-box { flex-shrink: 0; position: relative; }
.lb-wheel-canvas { display: block; border-radius: 50%; box-shadow: 0 0 40px rgba(49,205,104,0.2), 0 0 0 4px rgba(49,205,104,0.25); }
.lb-wheel-ptr {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: var(--clr-bg);
  border: 3px solid var(--clr-accent);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 12px rgba(49,205,104,0.4);
}
.lb-wheel-arrow {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 22px solid var(--clr-accent);
  filter: drop-shadow(0 2px 6px rgba(49,205,104,0.5));
  z-index: 3;
}
.lb-wheel-info { max-width: 360px; }
.lb-wheel-info__title { font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.lb-wheel-info__desc { font-size: 15px; color: var(--clr-text-muted); margin-bottom: 24px; line-height: 1.6; }
.lb-wheel-result {
  display: none;
  margin-top: 20px;
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  animation: fadeIn 0.4s ease;
}
.lb-wheel-result.win { background: rgba(49,205,104,0.12); border: 1px solid rgba(49,205,104,0.3); }
.lb-wheel-result.lose { background: rgba(255,80,80,0.08); border: 1px solid rgba(255,80,80,0.2); }
.lb-wheel-result__icon { font-size: 36px; margin-bottom: 8px; }
.lb-wheel-result__title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.lb-wheel-result__sub { font-size: 14px; color: var(--clr-text-muted); margin-bottom: 16px; }
@keyframes fadeIn { from { opacity:0; transform:scale(0.95); } to { opacity:1; transform:scale(1); } }

.lb-review {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.lb-review__author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.lb-review__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-btn-login), var(--clr-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.lb-review__author-info { display: flex; flex-direction: column; gap: 2px; }
.lb-review__author-name { font-size: 16px; font-weight: 700; color: #fff; }
.lb-review__author-role { font-size: 13px; color: var(--clr-text-muted); }
.lb-review__author-link { font-size: 13px; color: var(--clr-accent); }
.lb-review__author-link:hover { color: #fff; }

.lb-review__body h1, .lb-review__body h2, .lb-review__body h3,
.lb-review__body h4, .lb-review__body h5, .lb-review__body h6 {
  color: #fff;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 12px;
  line-height: 1.25;
}
.lb-review__body h1 { font-size: 26px; }
.lb-review__body h2 { font-size: 22px; color: #e0ecff; }
.lb-review__body h3 { font-size: 19px; }
.lb-review__body h4 { font-size: 17px; }
.lb-review__body p { color: var(--clr-text); margin-bottom: 16px; line-height: 1.7; }
.lb-review__body ul, .lb-review__body ol {
  margin: 0 0 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lb-review__body ul { list-style: disc; }
.lb-review__body ol { list-style: decimal; }
.lb-review__body li { color: var(--clr-text); line-height: 1.6; font-size: 15px; }
.lb-review__body a { color: var(--clr-accent); }
.lb-review__body a:hover { color: #fff; }
.lb-review__body strong, .lb-review__body b { color: #fff; font-weight: 700; }
.lb-review__body em, .lb-review__body i { color: #c0d5eb; }
.lb-review__body blockquote {
  border-left: 3px solid var(--clr-accent);
  padding: 12px 20px;
  margin: 20px 0;
  background: rgba(49,205,104,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: #c0d5eb;
  font-style: italic;
}
.lb-review__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  overflow-x: auto;
  display: block;
}
.lb-review__body table th,
.lb-review__body table td {
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  text-align: left;
  color: var(--clr-text);
}
.lb-review__body table th {
  background: rgba(5,34,64,0.9);
  color: #aac4e0;
  font-weight: 600;
}
.lb-review__body img { max-width: 100%; border-radius: var(--radius-sm); margin: 16px 0; }
.lb-review__body code {
  background: rgba(255,255,255,0.07);
  padding: 2px 7px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 13px;
  color: var(--clr-accent);
}
.lb-review__body pre {
  background: rgba(5,34,64,0.9);
  padding: 16px;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  margin: 16px 0;
}
.lb-review__body hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 28px 0;
}

.lb-content-placeholder {
  padding: 32px;
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  text-align: center;
  color: var(--clr-text-muted);
  font-size: 15px;
}

.lb-faq { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.lb-faq__item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.lb-faq__item:hover { border-color: rgba(49,205,104,0.3); }
.lb-faq__item.is-open { border-color: rgba(49,205,104,0.35); }
.lb-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
}
.lb-faq__q-text { font-size: 15px; font-weight: 600; color: #fff; flex: 1; }
.lb-faq__chevron {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(49,205,104,0.1);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.lb-faq__chevron svg { width: 12px; height: 12px; stroke: var(--clr-accent); transition: transform var(--transition); }
.lb-faq__item.is-open .lb-faq__chevron { background: var(--clr-accent); }
.lb-faq__item.is-open .lb-faq__chevron svg { stroke: #041121; transform: rotate(180deg); }
.lb-faq__a {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.7;
}
.lb-faq__item.is-open .lb-faq__a { display: block; }

.lb-ftr {
  background: var(--clr-header);
  border-top: 1px solid rgba(49,205,104,0.1);
  padding: 56px 0 32px;
}
.lb-ftr__top {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.lb-ftr__brand { flex-shrink: 0; }
.lb-ftr__brand img { height: 38px; width: auto; object-fit: contain; margin-bottom: 14px; }
.lb-ftr__brand-desc { font-size: 13px; color: var(--clr-text-muted); max-width: 240px; line-height: 1.6; }
.lb-ftr__nav { display: flex; flex-direction: column; gap: 8px; }
.lb-ftr__nav-title { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.lb-ftr__nav a { font-size: 14px; color: #7a9ab8; }
.lb-ftr__nav a:hover { color: var(--clr-accent); }

.lb-ftr__logos { margin-bottom: 28px; }
.lb-ftr__logos-title { font-size: 12px; font-weight: 700; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.lb-ftr__logos-row { display: flex; flex-wrap: wrap; gap: 10px; }
.lb-ftr__logo-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #7a9ab8;
  white-space: nowrap;
  transition: border-color var(--transition), color var(--transition);
}
.lb-ftr__logo-pill:hover { border-color: rgba(49,205,104,0.3); color: var(--clr-accent); }

.lb-ftr__divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin: 28px 0; }
.lb-ftr__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.lb-ftr__copy { font-size: 13px; color: #4e6e8a; }
.lb-ftr__legal { font-size: 12px; color: #3d5a72; max-width: 680px; line-height: 1.6; }

.lb-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(90deg, #052240 0%, #071e38 100%);
  border-top: 2px solid var(--clr-accent);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.4);
  transform: translateY(0);
  transition: transform var(--transition);
}
.lb-widget__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lb-widget__title { font-size: 15px; font-weight: 700; color: #fff; }
.lb-widget__bonus { font-size: 14px; color: var(--clr-accent); font-weight: 600; }
.lb-widget__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.lb-widget__close {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  cursor: pointer;
  color: #6a8fad;
  font-size: 16px;
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.lb-widget__close:hover { background: rgba(255,255,255,0.12); color: #fff; }

.lb-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.lb-fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .lb-hdr__nav { display: none; }
  .lb-burger { display: flex; }
  .lb-app-grid { flex-direction: column; }
  .lb-dl-btn { min-width: 100%; }
  .lb-wheel-area { flex-direction: column; text-align: center; gap: 28px; }
  .lb-wheel-info { max-width: 100%; }
}

@media (max-width: 768px) {
  .lb-sec { padding: 48px 0; }
  .lb-bonuses-grid {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 0 16px;
    padding-bottom: 12px;
    gap: 16px;
  }
  .lb-bonuses-grid::-webkit-scrollbar { height: 4px; }
  .lb-bonuses-grid::-webkit-scrollbar-track { background: rgba(255,255,255,0.03); border-radius: 4px; }
  .lb-bonuses-grid::-webkit-scrollbar-thumb { background: var(--clr-border); border-radius: 4px; }
  .lb-bonus-card { min-width: 280px; scroll-snap-align: start; }
  .lb-ftr__top { flex-direction: column; gap: 28px; }
  .lb-ftr__bottom { flex-direction: column; align-items: flex-start; }
  .lb-widget { flex-direction: column; text-align: center; padding: 14px 16px; }
  .lb-widget__text { align-items: center; }
  .lb-review { padding: 24px 18px; }
}

@media (max-width: 480px) {
  .lb-wrap { padding: 0 14px; }
  .lb-hero { min-height: 420px; }
  .lb-hero__content { padding: 48px 0; }
  .lb-hero__actions { flex-direction: column; align-items: flex-start; }
  .lb-wheel-canvas { width: 260px !important; height: 260px !important; }
}
