@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Bebas+Neue&display=swap');

:root {
  --lr-bg: #1C1B20;
  --lr-header-bg: #0C0E12;
  --lr-btn-dark: #181623;
  --lr-btn-accent: #805AF2;
  --lr-btn-accent-hover: #9b74f7;
  --lr-text: #E8E6F0;
  --lr-text-muted: #9B99A8;
  --lr-text-dim: #6B6878;
  --lr-card-bg: #141318;
  --lr-card-border: #2A2835;
  --lr-card-border2: #3a2d6e;
  --lr-accent: #805AF2;
  --lr-accent2: #5c3cbf;
  --lr-gold: #F0C040;
  --lr-green: #2ECC71;
  --lr-red: #E74C3C;
  --lr-radius: 12px;
  --lr-radius-sm: 6px;
  --lr-transition: 0.25s ease;
}

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

html { font-size: 16px; scroll-behavior: smooth; background: var(--lr-bg); }

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

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

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

.lr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--lr-radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: background var(--lr-transition), transform var(--lr-transition), box-shadow var(--lr-transition);
  text-decoration: none !important;
  white-space: nowrap;
}

.lr-btn--dark {
  background: var(--lr-btn-dark);
  color: var(--lr-text);
  border: 1px solid var(--lr-card-border);
}
.lr-btn--dark:hover { background: #221f35; border-color: var(--lr-accent); color: var(--lr-text); }

.lr-btn--accent {
  background: var(--lr-btn-accent);
  color: #fff;
}
.lr-btn--accent:hover { background: var(--lr-btn-accent-hover); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(128,90,242,0.4); color: #fff; }

.lr-btn--lg {
  padding: 15px 36px;
  font-size: 1rem;
  border-radius: var(--lr-radius);
}

.lr-btn--sm {
  padding: 8px 16px;
  font-size: 0.78rem;
}

.lr-header {
  background: var(--lr-header-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(128,90,242,0.15);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.lr-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  height: 64px;
  max-width: 1320px;
  margin: 0 auto;
}

.lr-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.lr-header__logo img {
  height: 40px;
  width: auto;
  border-radius: 8px;
}

.lr-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.lr-nav a {
  color: var(--lr-text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--lr-radius-sm);
  transition: color var(--lr-transition), background var(--lr-transition);
  white-space: nowrap;
}
.lr-nav a:hover, .lr-nav a.lr-active { color: var(--lr-text); background: rgba(128,90,242,0.12); }

.lr-header__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

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

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

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

.lr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

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

.lr-burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lr-burger.is-active span:nth-child(2) { opacity: 0; }
.lr-burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lr-mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--lr-header-bg);
  z-index: 999;
  padding: 20px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.lr-mobile-menu.is-open { display: flex; }

.lr-mobile-menu a {
  color: var(--lr-text);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 16px;
  border-radius: var(--lr-radius-sm);
  border-bottom: 1px solid var(--lr-card-border);
  transition: background var(--lr-transition);
}
.lr-mobile-menu a:hover { background: rgba(128,90,242,0.1); }

.lr-mobile-menu__cta {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-direction: column;
}

.lr-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0d18 0%, #1a1630 50%, #0C0E12 100%);
  min-height: 520px;
  display: flex;
  align-items: center;
}

.lr-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.lr-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,14,18,0.95) 30%, rgba(12,14,18,0.3) 100%);
}

.lr-hero__inner {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

.lr-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(128,90,242,0.2);
  border: 1px solid rgba(128,90,242,0.4);
  color: var(--lr-btn-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.lr-hero__title {
  font-family: 'Bebas Neue', 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

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

.lr-hero__desc {
  font-size: 1rem;
  color: var(--lr-text-muted);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.65;
}

.lr-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.lr-hero__bonus {
  font-size: 0.8rem;
  color: var(--lr-text-muted);
  margin-top: 16px;
}

.lr-hero__bonus strong { color: var(--lr-gold); }

.lr-section {
  padding: 60px 0;
}

.lr-section--tight { padding: 40px 0; }

.lr-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.lr-section__title {
  font-family: 'Bebas Neue', 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  letter-spacing: 0.5px;
  color: var(--lr-text);
}

.lr-section__title span { color: var(--lr-accent); }

.lr-section__sub {
  font-size: 0.85rem;
  color: var(--lr-text-muted);
  margin-top: 6px;
  max-width: 560px;
}

.lr-card {
  background: var(--lr-card-bg);
  border: 1px solid var(--lr-card-border);
  border-radius: var(--lr-radius);
  padding: 24px;
  transition: border-color var(--lr-transition), transform var(--lr-transition), box-shadow var(--lr-transition);
}
.lr-card:hover { border-color: rgba(128,90,242,0.4); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }

.lr-grid-2 { display: flex; gap: 20px; }
.lr-grid-2 > * { flex: 1; }
.lr-grid-3 { display: flex; gap: 20px; flex-wrap: wrap; }
.lr-grid-3 > * { flex: 1; min-width: 260px; }

.lr-pros-cons {
  display: flex;
  gap: 20px;
}

.lr-pros, .lr-cons {
  flex: 1;
  background: var(--lr-card-bg);
  border-radius: var(--lr-radius);
  padding: 24px;
  border: 1px solid var(--lr-card-border);
}

.lr-pros { border-top: 3px solid var(--lr-green); }
.lr-cons { border-top: 3px solid var(--lr-red); }

.lr-pros__title, .lr-cons__title {
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lr-pros__title { color: var(--lr-green); }
.lr-cons__title { color: var(--lr-red); }

.lr-pros li, .lr-cons li {
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--lr-text-muted);
  border-bottom: 1px solid var(--lr-card-border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.lr-pros li::before { content: '+'; color: var(--lr-green); font-weight: 900; flex-shrink: 0; }
.lr-cons li::before { content: '-'; color: var(--lr-red); font-weight: 900; flex-shrink: 0; }
.lr-pros li:last-child, .lr-cons li:last-child { border-bottom: none; }

.lr-screenshots {
  display: flex;
  gap: 16px;
}

.lr-screenshots__item {
  flex: 1;
  border-radius: var(--lr-radius);
  overflow: hidden;
  border: 1px solid var(--lr-card-border);
  transition: transform var(--lr-transition);
}
.lr-screenshots__item:hover { transform: scale(1.02); }
.lr-screenshots__item img { width: 100%; height: 200px; object-fit: cover; display: block; }

.lr-winners {
  background: var(--lr-card-bg);
  border: 1px solid var(--lr-card-border);
  border-radius: var(--lr-radius);
  overflow: hidden;
}

.lr-winners__header {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: rgba(128,90,242,0.08);
  border-bottom: 1px solid var(--lr-card-border);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--lr-text-muted);
}

.lr-winners__header span:first-child { width: 44px; }
.lr-winners__header span:nth-child(2) { flex: 1; }
.lr-winners__header span:last-child { text-align: right; }

.lr-winners__item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid var(--lr-card-border);
  transition: background var(--lr-transition);
  font-size: 0.88rem;
}
.lr-winners__item:last-child { border-bottom: none; }
.lr-winners__item:hover { background: rgba(128,90,242,0.05); }

.lr-winners__rank {
  width: 44px;
  font-weight: 800;
  color: var(--lr-text-muted);
  font-size: 0.85rem;
}
.lr-winners__rank--gold { color: #F0C040; }
.lr-winners__rank--silver { color: #C0C0C0; }
.lr-winners__rank--bronze { color: #CD7F32; }

.lr-winners__nick { flex: 1; font-weight: 600; color: var(--lr-text); }

.lr-winners__sum {
  font-weight: 800;
  color: var(--lr-green);
}

.lr-wheel-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.lr-wheel-canvas-wrap {
  position: relative;
}

canvas#lrWheel {
  display: block;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(128,90,242,0.3);
}

.lr-wheel-pointer {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 24px solid var(--lr-gold);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.lr-wheel-result {
  text-align: center;
  min-height: 60px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--lr-text);
}

.lr-wheel-result--win { color: var(--lr-green); }
.lr-wheel-result--lose { color: var(--lr-text-muted); }

.lr-content-block {
  background: var(--lr-card-bg);
  border: 1px solid var(--lr-card-border);
  border-radius: var(--lr-radius);
  padding: 36px;
}

.lr-content-block h2 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--lr-text); margin-bottom: 12px; margin-top: 28px; letter-spacing: 0.5px; }
.lr-content-block h2:first-child { margin-top: 0; }
.lr-content-block h3 { font-size: 1.05rem; font-weight: 700; color: var(--lr-text); margin-bottom: 10px; margin-top: 22px; }
.lr-content-block p { font-size: 0.92rem; color: var(--lr-text-muted); line-height: 1.75; margin-bottom: 14px; }
.lr-content-block ul { padding-left: 20px; margin-bottom: 14px; }
.lr-content-block ul li { list-style: disc; font-size: 0.92rem; color: var(--lr-text-muted); line-height: 1.7; margin-bottom: 6px; }
.lr-content-block ol { padding-left: 20px; margin-bottom: 14px; }
.lr-content-block ol li { list-style: decimal; font-size: 0.92rem; color: var(--lr-text-muted); line-height: 1.7; margin-bottom: 6px; }
.lr-content-block a { color: var(--lr-accent); text-decoration: underline; }
.lr-content-block a:hover { color: var(--lr-btn-accent-hover); }
.lr-content-block table { width: 100%; border-collapse: collapse; margin-bottom: 20px; font-size: 0.88rem; }
.lr-content-block table th { background: rgba(128,90,242,0.15); color: var(--lr-text); padding: 10px 14px; text-align: left; border: 1px solid var(--lr-card-border2); font-weight: 700; }
.lr-content-block table td { padding: 9px 14px; color: var(--lr-text-muted); border: 1px solid var(--lr-card-border); }
.lr-content-block table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.lr-content-block strong { color: var(--lr-text); font-weight: 700; }
.lr-content-block blockquote { border-left: 3px solid var(--lr-accent); padding: 12px 20px; background: rgba(128,90,242,0.06); border-radius: 0 var(--lr-radius-sm) var(--lr-radius-sm) 0; margin-bottom: 14px; font-style: italic; color: var(--lr-text-muted); }

.lr-author {
  background: var(--lr-card-bg);
  border: 1px solid var(--lr-card-border);
  border-radius: var(--lr-radius);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

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

.lr-author__name {
  font-weight: 800;
  font-size: 1rem;
  color: var(--lr-text);
  margin-bottom: 4px;
}

.lr-author__bio {
  font-size: 0.85rem;
  color: var(--lr-text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.lr-author__links { display: flex; gap: 10px; }

.lr-author__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lr-accent);
  transition: color var(--lr-transition);
}
.lr-author__link:hover { color: var(--lr-btn-accent-hover); }

.lr-footer {
  background: var(--lr-header-bg);
  border-top: 1px solid var(--lr-card-border);
  padding: 40px 0 20px;
  margin-top: auto;
}

.lr-footer__top {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--lr-card-border);
  margin-bottom: 24px;
}

.lr-footer__logo img { height: 38px; width: auto; border-radius: 8px; margin-bottom: 12px; }

.lr-footer__desc {
  font-size: 0.82rem;
  color: var(--lr-text-dim);
  max-width: 300px;
  line-height: 1.65;
}

.lr-footer__nav h4, .lr-footer__payments h4, .lr-footer__providers h4 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--lr-text-muted);
  margin-bottom: 14px;
}

.lr-footer__nav ul { display: flex; flex-direction: column; gap: 8px; }
.lr-footer__nav a { font-size: 0.85rem; color: var(--lr-text-dim); transition: color var(--lr-transition); }
.lr-footer__nav a:hover { color: var(--lr-text); }

.lr-footer__logos { display: flex; flex-wrap: wrap; gap: 8px; }
.lr-footer__logo-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--lr-card-border);
  border-radius: var(--lr-radius-sm);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--lr-text-muted);
}

.lr-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.lr-footer__copy {
  font-size: 0.78rem;
  color: var(--lr-text-dim);
}

.lr-footer__legal { display: flex; gap: 14px; flex-wrap: wrap; }
.lr-footer__legal a { font-size: 0.78rem; color: var(--lr-text-dim); transition: color var(--lr-transition); }
.lr-footer__legal a:hover { color: var(--lr-text); }

.lr-footer__18 {
  background: var(--lr-card-border);
  color: var(--lr-text-muted);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 4px;
  flex-shrink: 0;
}

.lr-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: linear-gradient(90deg, #0f0d18, #1a1630);
  border-top: 1px solid rgba(128,90,242,0.3);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}

.lr-widget__text {
  font-size: 0.88rem;
  color: var(--lr-text-muted);
  font-weight: 500;
}

.lr-widget__text strong { color: var(--lr-gold); }

.lr-widget__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--lr-text-dim);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color var(--lr-transition);
}
.lr-widget__close:hover { color: var(--lr-text); }

.lr-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--lr-radius);
}

.lr-slider__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}

.lr-slider__slide { flex-shrink: 0; width: 100%; }

.lr-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.lr-slider__btn {
  background: var(--lr-card-bg);
  border: 1px solid var(--lr-card-border);
  color: var(--lr-text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--lr-transition), border-color var(--lr-transition);
  font-size: 1rem;
}
.lr-slider__btn:hover { background: rgba(128,90,242,0.15); border-color: var(--lr-accent); }

.lr-slider__dots { display: flex; gap: 6px; }
.lr-slider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lr-card-border);
  cursor: pointer;
  transition: background var(--lr-transition), transform var(--lr-transition);
}
.lr-slider__dot.is-active { background: var(--lr-accent); transform: scale(1.3); }

.lr-bonus-card {
  background: var(--lr-card-bg);
  border: 1px solid var(--lr-card-border);
  border-radius: var(--lr-radius);
  padding: 28px 24px;
  text-align: center;
  transition: border-color var(--lr-transition), transform var(--lr-transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lr-bonus-card:hover { border-color: rgba(128,90,242,0.5); transform: translateY(-3px); }

.lr-bonus-card__icon { font-size: 2.4rem; }

.lr-bonus-card__title {
  font-weight: 800;
  font-size: 1rem;
  color: var(--lr-text);
}

.lr-bonus-card__amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--lr-accent);
  letter-spacing: 1px;
}

.lr-bonus-card__desc {
  font-size: 0.82rem;
  color: var(--lr-text-muted);
  line-height: 1.55;
}

.lr-promo-block {
  background: linear-gradient(135deg, #1a1434 0%, #241d44 100%);
  border: 1px solid rgba(128,90,242,0.4);
  border-radius: var(--lr-radius);
  padding: 36px;
  text-align: center;
}

.lr-promo-block__label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--lr-accent);
  margin-bottom: 12px;
}

.lr-promo-block__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.lr-promo-code {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,0.4);
  border: 2px dashed rgba(128,90,242,0.5);
  border-radius: var(--lr-radius-sm);
  padding: 14px 24px;
  margin: 0 auto 20px;
}

.lr-promo-code__value {
  font-family: 'Bebas Neue', monospace;
  font-size: 2rem;
  color: var(--lr-gold);
  letter-spacing: 3px;
}

.lr-promo-code__copy {
  background: var(--lr-accent);
  color: #fff;
  border: none;
  border-radius: var(--lr-radius-sm);
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--lr-transition);
}
.lr-promo-code__copy:hover { background: var(--lr-btn-accent-hover); }
.lr-promo-code__copy.copied { background: var(--lr-green); }

.lr-table-wrap {
  overflow-x: auto;
  border-radius: var(--lr-radius);
  border: 1px solid var(--lr-card-border);
}

.lr-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
  font-size: 0.88rem;
}

.lr-table th {
  background: rgba(128,90,242,0.12);
  color: var(--lr-text);
  padding: 13px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 1px solid var(--lr-card-border2);
}

.lr-table td {
  padding: 11px 16px;
  color: var(--lr-text-muted);
  border-bottom: 1px solid var(--lr-card-border);
  vertical-align: middle;
}

.lr-table tr:last-child td { border-bottom: none; }
.lr-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.lr-table tr:hover td { background: rgba(128,90,242,0.05); }

.lr-table td:first-child { font-weight: 600; color: var(--lr-text); }

.lr-table__check { color: var(--lr-green); font-weight: 900; }
.lr-table__x { color: var(--lr-red); font-weight: 900; }

.lr-faq { display: flex; flex-direction: column; gap: 8px; }

.lr-faq__item {
  background: var(--lr-card-bg);
  border: 1px solid var(--lr-card-border);
  border-radius: var(--lr-radius-sm);
  overflow: hidden;
  transition: border-color var(--lr-transition);
}
.lr-faq__item.is-open { border-color: rgba(128,90,242,0.4); }

.lr-faq__q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--lr-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color var(--lr-transition);
}
.lr-faq__q:hover { color: var(--lr-accent); }

.lr-faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--lr-accent);
  transition: transform var(--lr-transition);
}
.lr-faq__item.is-open .lr-faq__chevron { transform: rotate(180deg); }

.lr-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.lr-faq__item.is-open .lr-faq__a { max-height: 500px; }

.lr-faq__a-inner {
  padding: 0 20px 18px;
  font-size: 0.88rem;
  color: var(--lr-text-muted);
  line-height: 1.7;
}

.lr-info-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.lr-info-table tr { border-bottom: 1px solid var(--lr-card-border); }
.lr-info-table tr:last-child { border-bottom: none; }
.lr-info-table td { padding: 11px 16px; }
.lr-info-table td:first-child { font-weight: 700; color: var(--lr-text); width: 45%; }
.lr-info-table td:last-child { color: var(--lr-text-muted); }
.lr-info-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

.lr-slots-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.lr-slot-card {
  flex: 1;
  min-width: 140px;
  max-width: 200px;
  background: var(--lr-card-bg);
  border: 1px solid var(--lr-card-border);
  border-radius: var(--lr-radius-sm);
  overflow: hidden;
  transition: border-color var(--lr-transition), transform var(--lr-transition);
  cursor: pointer;
}
.lr-slot-card:hover { border-color: rgba(128,90,242,0.5); transform: translateY(-3px); }
.lr-slot-card__img { width: 100%; height: 100px; object-fit: cover; }
.lr-slot-card__name { padding: 8px 10px; font-size: 0.78rem; font-weight: 700; color: var(--lr-text); }
.lr-slot-card__provider { padding: 0 10px 8px; font-size: 0.7rem; color: var(--lr-text-muted); }

.lr-providers-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.lr-provider-badge {
  background: var(--lr-card-bg);
  border: 1px solid var(--lr-card-border);
  border-radius: var(--lr-radius-sm);
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lr-text-muted);
  transition: border-color var(--lr-transition), color var(--lr-transition);
}
.lr-provider-badge:hover { border-color: var(--lr-accent); color: var(--lr-text); }

.lr-features-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.lr-feature-card {
  flex: 1;
  min-width: 150px;
  background: var(--lr-card-bg);
  border: 1px solid var(--lr-card-border);
  border-radius: var(--lr-radius);
  padding: 20px;
  text-align: center;
  transition: border-color var(--lr-transition), transform var(--lr-transition);
}
.lr-feature-card:hover { border-color: rgba(128,90,242,0.4); transform: translateY(-2px); }
.lr-feature-card__icon { font-size: 2rem; margin-bottom: 10px; }
.lr-feature-card__name { font-weight: 700; font-size: 0.88rem; color: var(--lr-text); }

.lr-jackpot-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.lr-jackpot-card {
  flex: 1;
  min-width: 200px;
  background: linear-gradient(135deg, #1a1030 0%, #2a1a50 100%);
  border: 1px solid rgba(128,90,242,0.3);
  border-radius: var(--lr-radius);
  padding: 24px;
  text-align: center;
}

.lr-jackpot-card__label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--lr-text-muted); margin-bottom: 8px; }
.lr-jackpot-card__amount { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; color: var(--lr-gold); letter-spacing: 2px; animation: lr-count-pulse 3s infinite; }
@keyframes lr-count-pulse { 0%,100% { text-shadow: 0 0 10px rgba(240,192,64,0.3); } 50% { text-shadow: 0 0 20px rgba(240,192,64,0.6); } }
.lr-jackpot-card__name { font-size: 0.82rem; color: var(--lr-text-muted); margin-top: 4px; }

.lr-mirror-table td a { color: var(--lr-accent); transition: color var(--lr-transition); }
.lr-mirror-table td a:hover { color: var(--lr-btn-accent-hover); }
.lr-mirror-badge { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: 0.72rem; font-weight: 700; }
.lr-mirror-badge--active { background: rgba(46,204,113,0.15); color: var(--lr-green); border: 1px solid rgba(46,204,113,0.3); }

.lr-reg-bonus {
  background: linear-gradient(135deg, #181030 0%, #2a1a50 100%);
  border: 1px solid rgba(128,90,242,0.35);
  border-radius: var(--lr-radius);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.lr-reg-bonus__icon { font-size: 3rem; flex-shrink: 0; }
.lr-reg-bonus__title { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: #fff; letter-spacing: 1px; }
.lr-reg-bonus__desc { font-size: 0.88rem; color: var(--lr-text-muted); margin-top: 6px; }
.lr-reg-bonus__cta { margin-top: 14px; }

.lr-video-wrap {
  border-radius: var(--lr-radius);
  overflow: hidden;
  border: 1px solid var(--lr-card-border);
  position: relative;
  padding-top: 56.25%;
}
.lr-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.lr-alts-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.lr-alt-card {
  flex: 1;
  min-width: 140px;
  background: var(--lr-card-bg);
  border: 1px solid var(--lr-card-border);
  border-radius: var(--lr-radius-sm);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  transition: border-color var(--lr-transition);
}
.lr-alt-card:hover { border-color: rgba(128,90,242,0.4); }
.lr-alt-card__name { font-weight: 800; font-size: 0.9rem; color: var(--lr-text); }
.lr-alt-card__bonus { font-size: 0.78rem; color: var(--lr-green); }
.lr-alt-card__link { font-size: 0.78rem; color: var(--lr-accent); margin-top: auto; }

.lr-reg-methods { display: flex; flex-wrap: wrap; gap: 16px; }
.lr-reg-method {
  flex: 1;
  min-width: 200px;
  background: var(--lr-card-bg);
  border: 1px solid var(--lr-card-border);
  border-radius: var(--lr-radius);
  padding: 24px;
  text-align: center;
}
.lr-reg-method__num {
  width: 36px; height: 36px;
  background: var(--lr-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.9rem;
  margin: 0 auto 12px;
  color: #fff;
}
.lr-reg-method__title { font-weight: 700; font-size: 0.9rem; color: var(--lr-text); margin-bottom: 6px; }
.lr-reg-method__desc { font-size: 0.82rem; color: var(--lr-text-muted); line-height: 1.55; }

.lr-technical-content {
  background: var(--lr-card-bg);
  border: 1px solid var(--lr-card-border);
  border-radius: var(--lr-radius);
  padding: 36px;
}
.lr-technical-content h1 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--lr-text); margin-bottom: 24px; letter-spacing: 0.5px; }
.lr-technical-content h2 { font-size: 1.25rem; font-weight: 800; color: var(--lr-text); margin-bottom: 12px; margin-top: 28px; }
.lr-technical-content h3 { font-size: 1rem; font-weight: 700; color: var(--lr-text); margin-bottom: 10px; margin-top: 20px; }
.lr-technical-content p { font-size: 0.9rem; color: var(--lr-text-muted); line-height: 1.75; margin-bottom: 14px; }
.lr-technical-content ul { padding-left: 20px; margin-bottom: 14px; }
.lr-technical-content ul li { list-style: disc; font-size: 0.9rem; color: var(--lr-text-muted); line-height: 1.7; margin-bottom: 6px; }
.lr-technical-content ol { padding-left: 20px; margin-bottom: 14px; }
.lr-technical-content ol li { list-style: decimal; font-size: 0.9rem; color: var(--lr-text-muted); line-height: 1.7; margin-bottom: 6px; }
.lr-technical-content a { color: var(--lr-accent); }
.lr-technical-content strong { color: var(--lr-text); font-weight: 700; }

.lr-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--lr-text-muted);
  padding: 14px 0;
}
.lr-breadcrumb a { color: var(--lr-text-muted); transition: color var(--lr-transition); }
.lr-breadcrumb a:hover { color: var(--lr-accent); }
.lr-breadcrumb span { color: var(--lr-text-dim); }

.lr-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lr-card-border2), transparent);
  margin: 40px 0;
}

@media (max-width: 1024px) {
  .lr-nav { display: none; }
  .lr-burger { display: flex; }
  .lr-header__inner { justify-content: space-between; }
  .lr-header__cta .lr-online-badge { display: none; }
  .lr-pros-cons { flex-direction: column; }
  .lr-hero { min-height: 400px; }
}

@media (max-width: 768px) {
  .lr-grid-2, .lr-grid-3 { flex-direction: column; }
  .lr-screenshots { overflow-x: auto; flex-wrap: nowrap; gap: 12px; padding-bottom: 8px; scroll-snap-type: x mandatory; }
  .lr-screenshots__item { min-width: 80vw; scroll-snap-align: start; }
  .lr-section { padding: 40px 0; }
  .lr-content-block { padding: 20px; }
  .lr-author { flex-direction: column; align-items: center; text-align: center; }
  .lr-reg-bonus { flex-direction: column; text-align: center; }
  .lr-reg-bonus__icon { font-size: 2.4rem; }
  .lr-promo-block { padding: 24px 20px; }
  .lr-footer__top { flex-direction: column; gap: 28px; }
  .lr-footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .lr-jackpot-row, .lr-features-grid { flex-direction: column; }
  .lr-hero__inner { padding: 40px 20px; }
  .lr-widget { flex-direction: column; gap: 10px; padding: 12px 20px 14px; }
  .lr-widget__text { text-align: center; }
}

@media (max-width: 480px) {
  .lr-header__cta .lr-btn { padding: 8px 12px; font-size: 0.75rem; }
  .lr-promo-code { flex-direction: column; gap: 8px; }
  .lr-promo-code__value { font-size: 1.5rem; }
  .lr-bonus-card { padding: 20px 16px; }
}

.lr-g10k2f { display: none; }
.lr-x9m3r { visibility: hidden; position: absolute; width: 0; height: 0; overflow: hidden; }
