@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;900&display=swap");

:root {
  --bg-main: #202346;
  --bg-header:
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    linear-gradient(180deg, #282b5a 0%, #25293a 100%);
  --btn-blue: radial-gradient(
    75% 100% at 50.34% 100%,
    #2094ff 0%,
    #0b3ddd 100%
  );
  --btn-white: #ffffff;
  --color-text: #e8eaf6;
  --color-text-muted: #9ba3d4;
  --color-accent: #2094ff;
  --color-accent2: #f9c23c;
  --color-border: rgba(255, 255, 255, 0.08);
  --radius-md: 10px;
  --radius-lg: 18px;
  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.32);
  --font-main: "Nunito Sans", "Proxima Nova", sans-serif;
}

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

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

body {
  font-family: var(--font-main);
  background: var(--bg-main);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: opacity 0.2s;
}
a:hover {
  opacity: 0.8;
}

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

.wp-block-group,
.wp-block-columns,
.entry-content,
.elementor-widget-wrap,
.wp-post-image,
.attachment-post-thumbnail,
.size-post-thumbnail,
.wp-caption,
.screen-reader-text,
.skip-link,
.widget_recent_entries,
.site-description,
.page-numbers {
  display: none !important;
}
.xb7k2-hidden,
.lz9q3-spacer,
.y4r1v-ghost {
  display: none;
}
.f8m2n-overlay {
  pointer-events: none;
  opacity: 0;
}

.lz-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.lz-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.lz-main {
  flex: 1;
}

.lz-header {
  background: var(--bg-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lz-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}

.lz-header__logo img {
  height: 84px;
  width: auto;
  display: block;
}

.lz-header__nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lz-header__nav a {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.lz-header__nav a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  opacity: 1;
}

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

.lz-header__online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.lz-header__online-dot {
  width: 8px;
  height: 8px;
  background: #22dd88;
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 221, 136, 0.5);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(34, 221, 136, 0);
  }
}

.lz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.2s,
    opacity 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.lz-btn:hover {
  transform: translateY(-1px);
  opacity: 1;
}
.lz-btn:active {
  transform: translateY(0);
}

.lz-btn--login {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-size: 14px;
  padding: 8px 18px;
}
.lz-btn--login:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.lz-btn--signup {
  background: var(--btn-blue);
  color: #ffffff;
  font-size: 14px;
  padding: 8px 20px;
  box-shadow: 0 2px 12px rgba(32, 148, 255, 0.35);
}
.lz-btn--signup:hover {
  box-shadow: 0 4px 20px rgba(32, 148, 255, 0.55);
  color: #fff;
}

.lz-btn--bonus {
  background: var(--btn-blue);
  color: #ffffff;
  font-size: 15px;
  padding: 10px 24px;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(32, 148, 255, 0.4);
  font-weight: 800;
}
.lz-btn--bonus:hover {
  box-shadow: 0 6px 24px rgba(32, 148, 255, 0.65);
  color: #fff;
}

.lz-btn--lg {
  font-size: 17px;
  padding: 14px 36px;
  border-radius: 12px;
}
.lz-btn--xl {
  font-size: 19px;
  padding: 16px 44px;
  border-radius: 14px;
}

/* BURGER */
.lz-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
}
.lz-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.lz-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.lz-burger.active span:nth-child(2) {
  opacity: 0;
}
.lz-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.lz-mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-header);
  border-top: 1px solid var(--color-border);
  padding: 12px 20px;
  gap: 8px;
}
.lz-mobile-nav.active {
  display: flex;
}
.lz-mobile-nav a {
  color: var(--color-text);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
}
.lz-mobile-nav a:last-child {
  border-bottom: none;
}

.lz-hero {
  position: relative;
  background: var(--bg-main);
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.lz-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
}
.lz-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(32, 35, 70, 0.92) 40%,
    rgba(32, 35, 70, 0.4) 100%
  );
  z-index: 1;
}
.lz-hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 64px 20px;
  margin: 0 auto 0 0;
  margin-left: max(20px, calc(50vw - 620px));
}
.lz-hero__badge {
  display: inline-block;
  background: rgba(32, 148, 255, 0.18);
  border: 1px solid rgba(32, 148, 255, 0.4);
  color: #79c6ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.lz-hero__title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.lz-hero__title span {
  color: var(--color-accent2);
}
.lz-hero__sub {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}
.lz-hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.lz-hero__trust {
  display: flex;
  gap: 18px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.lz-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--color-text-muted);
}
.lz-hero__trust-icon {
  width: 20px;
  height: 20px;
  background: var(--btn-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  flex-shrink: 0;
}

.lz-section {
  padding: 60px 0;
}
.lz-section--sm {
  padding: 40px 0;
}
.lz-section-title {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  text-align: center;
}
.lz-section-sub {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 15px;
  margin-bottom: 36px;
}
.lz-divider {
  width: 48px;
  height: 3px;
  background: var(--btn-blue);
  border-radius: 3px;
  margin: 10px auto 32px;
}

.lz-card {
  background: linear-gradient(145deg, #252850 0%, #1e2140 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.lz-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.lz-info-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.lz-info-table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(145deg, #252850 0%, #1e2140 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.lz-info-table tr {
  border-bottom: 1px solid var(--color-border);
}
.lz-info-table tr:last-child {
  border-bottom: none;
}
.lz-info-table tr:hover {
  background: rgba(255, 255, 255, 0.03);
}
.lz-info-table td {
  padding: 14px 20px;
  font-size: 14px;
  text-align: left;
  vertical-align: middle;
}
.lz-info-table td:first-child {
  color: var(--color-text-muted);
  font-weight: 600;
  width: 42%;
  white-space: nowrap;
}
.lz-info-table td:last-child {
  color: var(--color-text);
  font-weight: 600;
}
.lz-info-table .lz-badge-tag {
  display: inline-block;
  background: rgba(32, 148, 255, 0.14);
  color: #79c6ff;
  border-radius: 5px;
  font-size: 12px;
  padding: 2px 9px;
  margin: 2px 3px;
  font-weight: 700;
}

.lz-jackpot-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.lz-jackpot-card {
  background: linear-gradient(135deg, #252850 0%, #1a1e3d 100%);
  border: 1px solid rgba(32, 148, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  text-align: center;
  flex: 1 1 220px;
  max-width: 280px;
  box-shadow: 0 4px 24px rgba(11, 61, 221, 0.2);
  position: relative;
  overflow: hidden;
}
.lz-jackpot-card::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(32, 148, 255, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.lz-jackpot-card__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.lz-jackpot-card__amount {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 900;
  color: var(--color-accent2);
  letter-spacing: -0.01em;
  text-shadow: 0 0 18px rgba(249, 194, 60, 0.35);
  transition: all 0.4s;
}
.lz-jackpot-card__game {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 8px;
}

.lz-mirror-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.lz-mirror-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.lz-mirror-datetime {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
}
.lz-mirror-datetime-val {
  color: #22dd88;
  font-weight: 700;
}
.lz-mirror-table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(145deg, #252850 0%, #1e2140 100%);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-width: 540px;
}
.lz-mirror-table thead tr {
  background: rgba(32, 148, 255, 0.1);
}
.lz-mirror-table th {
  text-align: left;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}
.lz-mirror-table td {
  padding: 13px 18px;
  font-size: 14px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}
.lz-mirror-table tr:last-child td {
  border-bottom: none;
}
.lz-mirror-table tr:hover td {
  background: rgba(255, 255, 255, 0.025);
}
.lz-mirror-table a {
  color: var(--color-accent);
  font-weight: 700;
}
.lz-mirror-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #22dd88;
}
.lz-mirror-status::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #22dd88;
  border-radius: 50%;
  display: inline-block;
}

.lz-app-grid {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.lz-app-info {
  flex: 1 1 320px;
}
.lz-app-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 0 0 auto;
  width: 200px;
}
.lz-app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.lz-app-btn:hover {
  background: rgba(32, 148, 255, 0.12);
  border-color: rgba(32, 148, 255, 0.5);
  color: #fff;
  opacity: 1;
}
.lz-app-btn__icon {
  font-size: 22px;
  line-height: 1;
}
.lz-app-btn__sub {
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 400;
}
.lz-app-table-wrap {
  overflow-x: auto;
  margin-top: 18px;
}
.lz-app-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 340px;
}
.lz-app-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}
.lz-app-table td:first-child {
  color: var(--color-text-muted);
  font-weight: 600;
  width: 50%;
}

.lz-demo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0f1128;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--color-border);
  position: relative;
}
.lz-demo-wrap iframe {
  width: 100%;
  min-height: 500px;
  border: none;
  display: block;
}
.lz-demo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 17, 40, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 10;
}
.lz-demo-overlay__title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}
.lz-demo-overlay__sub {
  font-size: 14px;
  color: var(--color-text-muted);
}

.lz-review-block {
  background: linear-gradient(145deg, #252850 0%, #1e2140 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-card);
}
.lz-review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}
.lz-review-author__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--btn-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.lz-review-author__name {
  font-weight: 800;
  font-size: 16px;
  color: #fff;
}
.lz-review-author__role {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 3px;
}
.lz-review-author__link {
  font-size: 12px;
  color: var(--color-accent);
  display: inline-block;
  margin-top: 3px;
}

.lz-review-content h2,
.lz-review-content h3,
.lz-review-content h4 {
  font-weight: 800;
  color: #fff;
  margin: 26px 0 12px;
  line-height: 1.3;
}
.lz-review-content h2 {
  font-size: clamp(18px, 2.5vw, 24px);
}
.lz-review-content h3 {
  font-size: clamp(16px, 2vw, 20px);
}
.lz-review-content h4 {
  font-size: 17px;
}
.lz-review-content p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: var(--color-text);
}
.lz-review-content ul,
.lz-review-content ol {
  margin: 0 0 16px 22px;
}
.lz-review-content ul li,
.lz-review-content ol li {
  margin-bottom: 8px;
  color: var(--color-text);
  line-height: 1.65;
}
.lz-review-content ul li::marker {
  color: var(--color-accent);
}
.lz-review-content ol li::marker {
  color: var(--color-accent2);
  font-weight: 700;
}
.lz-review-content a {
  color: var(--color-accent);
  text-decoration: underline;
}
.lz-review-content strong,
.lz-review-content b {
  color: #fff;
  font-weight: 700;
}
.lz-review-content em,
.lz-review-content i {
  font-style: italic;
  color: var(--color-text-muted);
}
.lz-review-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 14px;
}
.lz-review-content table th,
.lz-review-content table td {
  border: 1px solid var(--color-border);
  padding: 10px 14px;
  text-align: left;
}
.lz-review-content table th {
  background: rgba(32, 148, 255, 0.1);
  color: #fff;
  font-weight: 700;
}
.lz-review-content table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.lz-review-content blockquote {
  border-left: 3px solid var(--color-accent);
  padding: 12px 18px;
  margin: 0 0 16px;
  background: rgba(32, 148, 255, 0.07);
  border-radius: 0 8px 8px 0;
  color: var(--color-text-muted);
  font-style: italic;
}
.lz-review-content hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 24px 0;
}
.lz-review-content img {
  border-radius: 8px;
  margin: 12px 0;
}

.lz-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lz-faq-item {
  background: linear-gradient(145deg, #252850 0%, #1e2140 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.lz-faq-item.active {
  border-color: rgba(32, 148, 255, 0.4);
}
.lz-faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  padding: 18px 22px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.lz-faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}
.lz-faq-icon {
  width: 24px;
  height: 24px;
  background: rgba(32, 148, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  color: var(--color-accent);
  transition:
    transform 0.25s,
    background 0.2s;
}
.lz-faq-item.active .lz-faq-icon {
  transform: rotate(45deg);
  background: var(--btn-blue);
  color: #fff;
}
.lz-faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
}
.lz-faq-item.active .lz-faq-answer {
  display: block;
}

.lz-footer {
  background: var(--bg-header);
  border-top: 1px solid var(--color-border);
  padding: 48px 0 24px;
}
.lz-footer__top {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}
.lz-footer__brand {
  flex: 0 0 auto;
  max-width: 240px;
}
.lz-footer__logo img {
  height: 38px;
  width: auto;
}
.lz-footer__tagline {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 10px;
  line-height: 1.5;
}
.lz-footer__col {
  flex: 1 1 140px;
}
.lz-footer__col-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}
.lz-footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lz-footer__links a {
  font-size: 14px;
  color: var(--color-text);
}
.lz-footer__links a:hover {
  color: #fff;
}
.lz-footer__payments,
.lz-footer__providers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.lz-footer__pay-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.lz-footer__prov-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-muted);
}
.lz-footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.lz-footer__copy {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.lz-footer__legal {
  font-size: 12px;
  color: rgba(155, 163, 212, 0.5);
  max-width: 600px;
  line-height: 1.6;
}

.lz-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #0f1128 0%, #1a1f4d 100%);
  border-top: 1px solid rgba(32, 148, 255, 0.3);
  box-shadow: 0 -4px 28px rgba(0, 0, 0, 0.5);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.lz-widget__text {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.35;
}
.lz-widget__bonus {
  font-size: 18px;
  font-weight: 900;
  color: var(--color-accent2);
  display: block;
}
.lz-widget__close {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  flex-shrink: 0;
  transition: color 0.2s;
}
.lz-widget__close:hover {
  color: #fff;
}
.lz-widget.hidden {
  display: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lz-animate-in {
  animation: fadeInUp 0.5s ease both;
}
.lz-animate-in:nth-child(2) {
  animation-delay: 0.1s;
}
.lz-animate-in:nth-child(3) {
  animation-delay: 0.2s;
}
.lz-animate-in:nth-child(4) {
  animation-delay: 0.3s;
}

@media (max-width: 768px) {
  .lz-header__nav {
    display: none;
  }
  .lz-burger {
    display: flex;
  }
  .lz-hero {
    min-height: 420px;
  }
  .lz-hero__content {
    padding: 40px 20px 48px;
    margin: 0;
  }
  .lz-section {
    padding: 40px 0;
  }
  .lz-review-block {
    padding: 22px 18px;
  }
  .lz-app-grid {
    flex-direction: column;
  }
  .lz-app-btns {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .lz-app-btn {
    flex: 1 1 140px;
  }
  .lz-widget {
    padding: 10px 14px;
  }
  .lz-widget__bonus {
    font-size: 15px;
  }
  .lz-footer__top {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .lz-hero__btns {
    flex-direction: column;
  }
  .lz-btn--xl {
    font-size: 16px;
    padding: 13px 28px;
  }
  .lz-jackpot-card {
    flex: 1 1 160px;
  }
  .lz-footer__bottom {
    flex-direction: column;
  }
}

.wp-content-area,
.entry-meta,
.post-thumbnail,
.site-header-wrapper,
.elementor-section-wrap,
.e-con-inner,
.fl-builder-content {
  display: none !important;
}
.xk3r7-spacer-x94 {
  width: 0;
  height: 0;
  overflow: hidden;
}
