@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Inter", sans-serif;
  background-color: #151028;
  color: #e8e0f7;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

:root {
  --color-bg: #151028;
  --color-header: #231d47;
  --color-footer: #231d47;
  --color-btn-primary: #8a46f6;
  --color-btn-secondary: #ffffff;
  --color-text: #e8e0f7;
  --color-text-muted: #9b8ec4;
  --color-accent: #c97eff;
  --color-border: #2e2558;
  --color-card: #1e1840;
  --color-card2: #1a1435;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.28s ease;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: #fff;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
ul {
  list-style: none;
}
input,
textarea,
select {
  font-family: inherit;
}

.lj-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.lj-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.lj-container--narrow {
  max-width: 860px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  border: none;
  outline: none;
}
.btn--primary {
  background: var(--color-btn-primary);
  color: #fff;
}
.btn--primary:hover {
  background: #7530e0;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(138, 70, 246, 0.45);
}
.btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.25);
}
.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--ghost {
  background: rgba(138, 70, 246, 0.12);
  color: var(--color-accent);
  border: 1px solid rgba(138, 70, 246, 0.3);
}
.btn--ghost:hover {
  background: rgba(138, 70, 246, 0.22);
  color: #fff;
}
.btn--lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: var(--radius);
}
.btn--sm {
  padding: 7px 16px;
  font-size: 13px;
}

.lj-header {
  background: var(--color-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
}
.lj-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 68px;
  position: relative;
}
.lj-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.lj-header__logo img {
  height: 40px;
  width: auto;
}
.lj-header__logo-text {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}
.lj-header__logo-text span {
  color: var(--color-accent);
}
.lj-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
  flex: 1;
}
.lj-header__nav a {
  color: rgba(232, 224, 247, 0.75);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.lj-header__nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}
.lj-header__nav a svg {
  width: 15px;
  height: 15px;
  opacity: 0.7;
  flex-shrink: 0;
}
.lj-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.lj-header__online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text-muted);
  white-space: nowrap;
  padding: 0 8px;
}
.lj-header__online-dot {
  width: 8px;
  height: 8px;
  background: #3dff8c;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(61, 255, 140, 0.5);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(61, 255, 140, 0);
  }
}
.lj-header__lang {
  position: relative;
}
.lj-header__lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
}
.lj-header__lang-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}
.lj-header__lang-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: var(--color-header);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  min-width: 140px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  z-index: 200;
  display: none;
  overflow: hidden;
}
.lj-header__lang-dropdown.open {
  display: block;
  animation: fade-in 0.18s ease;
}
.lj-header__lang-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: rgba(232, 224, 247, 0.8);
  font-size: 14px;
  cursor: pointer;
  transition: background var(--transition);
}
.lj-header__lang-item:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}
.lj-header__lang-item.active {
  color: #fff;
  background: rgba(138, 70, 246, 0.15);
}
.lj-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.lj-burger:hover {
  background: rgba(255, 255, 255, 0.07);
}
.lj-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.lj-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.lj-burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.lj-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.lj-mobile-nav {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--color-header);
  z-index: 999;
  padding: 20px 16px;
  overflow-y: auto;
  border-top: 1px solid var(--color-border);
}
.lj-mobile-nav.open {
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: slide-down 0.22s ease;
}
.lj-mobile-nav a {
  color: rgba(232, 224, 247, 0.85);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
}
.lj-mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}
.lj-mobile-nav a svg {
  width: 18px;
  height: 18px;
}
.lj-mobile-nav__divider {
  height: 1px;
  background: var(--color-border);
  margin: 8px 0;
}
.lj-mobile-nav__actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.lj-mobile-nav__actions .btn {
  flex: 1;
  justify-content: center;
}

.lj-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0e0b22;
}
.lj-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("/jetban.png");
  background-size: cover;
  background-position: center 30%;
  opacity: 0.45;
}
.lj-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(21, 16, 40, 0.95) 0%,
    rgba(21, 16, 40, 0.6) 60%,
    rgba(21, 16, 40, 0.85) 100%
  );
}
.lj-hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.lj-hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 60px 0;
}
.lj-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(138, 70, 246, 0.18);
  border: 1px solid rgba(138, 70, 246, 0.35);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.lj-hero__badge svg {
  width: 14px;
  height: 14px;
}
.lj-hero__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
  text-wrap: balance;
}
.lj-hero__title em {
  font-style: normal;
  color: var(--color-accent);
}
.lj-hero__subtitle {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(232, 224, 247, 0.75);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 520px;
}
.lj-hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.lj-hero__stats {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.lj-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lj-hero__stat-value {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.lj-hero__stat-label {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 500;
}
.lj-hero__rtp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(61, 255, 140, 0.12);
  border: 1px solid rgba(61, 255, 140, 0.25);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 13px;
  color: #3dff8c;
  font-weight: 600;
}
.lj-hero__image {
  position: absolute;
  right: -40px;
  bottom: 0;
  width: clamp(280px, 45vw, 520px);
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

.lj-section {
  padding: 64px 0;
}
.lj-section--alt {
  background: rgba(255, 255, 255, 0.02);
}
.lj-section__header {
  text-align: center;
  margin-bottom: 40px;
}
.lj-section__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(138, 70, 246, 0.12);
  border: 1px solid rgba(138, 70, 246, 0.25);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.lj-section__title {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  text-wrap: balance;
}
.lj-section__desc {
  font-size: 15px;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.lj-advantages {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.lj-adv-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}
.lj-adv-card:hover {
  transform: translateY(-3px);
  border-color: rgba(138, 70, 246, 0.4);
  box-shadow: 0 8px 32px rgba(138, 70, 246, 0.15);
}
.lj-adv-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(138, 70, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lj-adv-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
}
.lj-adv-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.lj-adv-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.lj-winners {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.lj-winners__table {
  width: 100%;
  border-collapse: collapse;
}
.lj-winners__table thead th {
  background: rgba(138, 70, 246, 0.12);
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-border);
}
.lj-winners__table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background var(--transition);
}
.lj-winners__table tbody tr:hover {
  background: rgba(138, 70, 246, 0.07);
}
.lj-winners__table tbody tr:last-child {
  border-bottom: none;
}
.lj-winners__table td {
  padding: 11px 16px;
  font-size: 14px;
  color: var(--color-text);
}
.lj-winners__rank {
  font-weight: 700;
  color: var(--color-text-muted);
  width: 40px;
}
.lj-winners__rank--top {
  color: #ffd700;
}
.lj-winners__nick {
  font-weight: 600;
  color: #fff;
}
.lj-winners__multi {
  color: var(--color-accent);
  font-weight: 700;
}
.lj-winners__amount {
  color: #3dff8c;
  font-weight: 700;
}
.lj-winners__time {
  color: var(--color-text-muted);
  font-size: 13px;
}
.lj-winners__scroll {
  overflow-x: auto;
}

.lj-demo-wrap {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}
.lj-demo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(138, 70, 246, 0.08);
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
  gap: 12px;
}
.lj-demo-top h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.lj-demo-top p {
  font-size: 13px;
  color: var(--color-text-muted);
}
.lj-demo-frame {
  position: relative;
  padding-bottom: 56.25%;
  background: #0a0818;
}
.lj-demo-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.lj-demo-bottom {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.lj-demo-note {
  font-size: 13px;
  color: var(--color-text-muted);
}

.lj-strategies {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.lj-strat-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}
.lj-strat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(138, 70, 246, 0.4);
  box-shadow: 0 10px 36px rgba(138, 70, 246, 0.18);
}
.lj-strat-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.lj-strat-img-placeholder {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: linear-gradient(
    135deg,
    rgba(138, 70, 246, 0.2),
    rgba(21, 16, 40, 0.8)
  );
}
.lj-strat-body {
  padding: 18px;
}
.lj-strat-tag {
  display: inline-block;
  background: rgba(138, 70, 246, 0.15);
  border: 1px solid rgba(138, 70, 246, 0.25);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.lj-strat-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.lj-strat-body p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.lj-content-block {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
}
.lj-content-block .text h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 1.5em 0 0.6em;
  line-height: 1.3;
}
.lj-content-block .text h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-accent);
  margin: 1.3em 0 0.5em;
}
.lj-content-block .text h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 1.2em 0 0.4em;
}
.lj-content-block .text p {
  font-size: 15px;
  color: rgba(232, 224, 247, 0.82);
  line-height: 1.7;
  margin-bottom: 0.9em;
}
.lj-content-block .text ul,
.lj-content-block .text ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
.lj-content-block .text li {
  font-size: 15px;
  color: rgba(232, 224, 247, 0.82);
  line-height: 1.65;
  margin-bottom: 0.4em;
}
.lj-content-block .text ul li {
  list-style: disc;
}
.lj-content-block .text ol li {
  list-style: decimal;
}
.lj-content-block .text table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.lj-content-block .text th {
  background: rgba(138, 70, 246, 0.15);
  padding: 10px 14px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  border: 1px solid var(--color-border);
}
.lj-content-block .text td {
  padding: 10px 14px;
  font-size: 14px;
  color: rgba(232, 224, 247, 0.82);
  border: 1px solid var(--color-border);
}
.lj-content-block .text tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.025);
}
.lj-content-block .text a {
  color: var(--color-accent);
}
.lj-content-block .text blockquote {
  border-left: 3px solid var(--color-accent);
  padding: 12px 18px;
  margin: 1em 0;
  background: rgba(138, 70, 246, 0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: rgba(232, 224, 247, 0.75);
}
.lj-content-block .text strong {
  color: #fff;
  font-weight: 600;
}
.lj-content-block .text em {
  color: var(--color-accent);
  font-style: normal;
}

.lj-author-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.lj-author-avatar {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(138, 70, 246, 0.4);
  background: rgba(138, 70, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  color: var(--color-accent);
}
.lj-author-avatar img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
}
.lj-author-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 4px;
}
.lj-author-name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.lj-author-bio {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.lj-author-socials {
  display: flex;
  gap: 8px;
}
.lj-author-socials a {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 13px;
  color: rgba(232, 224, 247, 0.7);
  transition: all var(--transition);
}
.lj-author-socials a:hover {
  background: rgba(138, 70, 246, 0.15);
  border-color: rgba(138, 70, 246, 0.4);
  color: #fff;
}
.lj-author-socials a svg {
  width: 16px;
  height: 16px;
}

.lj-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lj-faq-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.lj-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  transition: background var(--transition);
  user-select: none;
}
.lj-faq-q:hover {
  background: rgba(138, 70, 246, 0.08);
}
.lj-faq-q svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  transition: transform var(--transition);
}
.lj-faq-item.open .lj-faq-q svg {
  transform: rotate(180deg);
}
.lj-faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}
.lj-faq-item.open .lj-faq-a {
  max-height: 400px;
}
.lj-faq-a-inner {
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.lj-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}
.lj-review-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition);
}
.lj-review-card:hover {
  border-color: rgba(138, 70, 246, 0.35);
}
.lj-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lj-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(138, 70, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  color: var(--color-accent);
  flex-shrink: 0;
}
.lj-review-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.lj-review-meta {
  font-size: 12px;
  color: var(--color-text-muted);
}
.lj-review-stars {
  display: flex;
  gap: 2px;
}
.lj-review-stars svg {
  width: 14px;
  height: 14px;
  color: #ffc020;
}
.lj-review-text {
  font-size: 14px;
  color: rgba(232, 224, 247, 0.78);
  line-height: 1.6;
}

.lj-footer {
  background: var(--color-footer);
  border-top: 1px solid var(--color-border);
  margin-top: auto;
}
.lj-footer__top {
  padding: 40px 0 28px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.lj-footer__brand {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lj-footer__logo img {
  height: 36px;
  width: auto;
}
.lj-footer__logo-text {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.lj-footer__logo-text span {
  color: var(--color-accent);
}
.lj-footer__tagline {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.lj-footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.lj-footer__col a {
  display: block;
  font-size: 13px;
  color: rgba(232, 224, 247, 0.6);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.lj-footer__col a:hover {
  color: var(--color-accent);
}
.lj-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.lj-footer__badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(232, 224, 247, 0.6);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.lj-footer__badge svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}
.lj-footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.lj-footer__copy {
  font-size: 12px;
  color: rgba(232, 224, 247, 0.4);
  line-height: 1.6;
}
.lj-footer__legal {
  font-size: 11px;
  color: rgba(232, 224, 247, 0.3);
  line-height: 1.5;
  max-width: 540px;
}
.lj-footer__18 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(232, 224, 247, 0.2);
  font-size: 13px;
  font-weight: 800;
  color: rgba(232, 224, 247, 0.3);
  flex-shrink: 0;
}
.lj-footer__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 16px 0;
}
.lj-footer__pay-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(232, 224, 247, 0.55);
}

.lj-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #231d47 0%, #1a1435 100%);
  border-top: 2px solid var(--color-btn-primary);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.lj-widget__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lj-widget__bonus {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}
.lj-widget__sub {
  font-size: 12px;
  color: rgba(232, 224, 247, 0.5);
}
.lj-widget__action a {
  text-decoration: none;
}
.lj-widget__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition);
}
.lj-widget__close:hover {
  background: rgba(255, 255, 255, 0.14);
}
.lj-widget__close svg {
  width: 16px;
  height: 16px;
  color: rgba(232, 224, 247, 0.5);
}
.lj-widget.hidden {
  display: none;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.lj-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-10vh) rotate(720deg);
    opacity: 0;
  }
}

.lj-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text-muted);
  padding: 14px 0;
  flex-wrap: wrap;
}
.lj-breadcrumb a {
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.lj-breadcrumb a:hover {
  color: #fff;
}
.lj-breadcrumb span {
  color: rgba(255, 255, 255, 0.2);
}

.lj-specs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.lj-specs-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.lj-specs-table tr:last-child {
  border-bottom: none;
}
.lj-specs-table td {
  padding: 11px 16px;
  font-size: 14px;
}
.lj-specs-table td:first-child {
  color: var(--color-text-muted);
  font-weight: 500;
  width: 180px;
  background: rgba(138, 70, 246, 0.04);
}
.lj-specs-table td:last-child {
  color: #fff;
  font-weight: 600;
}
.lj-specs-wrap {
  overflow-x: auto;
}

.lj-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lj-pc-box {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
}
.lj-pc-box h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lj-pc-box--pros h4 {
  color: #3dff8c;
}
.lj-pc-box--cons h4 {
  color: #ff6b6b;
}
.lj-pc-box li {
  font-size: 14px;
  color: rgba(232, 224, 247, 0.8);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.lj-pc-box li:last-child {
  border-bottom: none;
}
.lj-pc-box li svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 3px;
}
.lj-pc-box--pros li svg {
  color: #3dff8c;
}
.lj-pc-box--cons li svg {
  color: #ff6b6b;
}

.lj-technical-content {
  padding: 32px 0;
}
.lj-technical-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 1.5em 0 0.6em;
}
.lj-technical-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-accent);
  margin: 1.2em 0 0.5em;
}
.lj-technical-content p {
  font-size: 15px;
  color: rgba(232, 224, 247, 0.8);
  line-height: 1.7;
  margin-bottom: 0.9em;
}
.lj-technical-content ul,
.lj-technical-content ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
.lj-technical-content li {
  font-size: 15px;
  color: rgba(232, 224, 247, 0.8);
  line-height: 1.65;
  margin-bottom: 0.4em;
}
.lj-technical-content ul li {
  list-style: disc;
}
.lj-technical-content ol li {
  list-style: decimal;
}

.lj-pb {
  padding-bottom: 80px;
}

@media (max-width: 1024px) {
  .lj-hero__image {
    width: clamp(220px, 40vw, 380px);
  }
  .lj-pros-cons {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .lj-header__nav {
    display: none;
  }
  .lj-header__online {
    display: none;
  }
  .lj-header__lang {
    display: none;
  }
  .lj-burger {
    display: flex;
  }
  .lj-hero {
    min-height: 460px;
  }
  .lj-hero__content {
    padding: 44px 0;
  }
  .lj-hero__image {
    display: none;
  }
  .lj-section {
    padding: 44px 0;
  }
  .lj-strategies {
    grid-template-columns: 1fr;
  }
  .lj-reviews {
    grid-template-columns: 1fr;
  }
  .lj-advantages {
    grid-template-columns: 1fr;
  }
  .lj-author-card {
    flex-direction: column;
    gap: 16px;
  }
  .lj-footer__top {
    flex-direction: column;
    gap: 24px;
  }
  .lj-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .lj-widget {
    padding: 10px 12px;
  }
}
@media (max-width: 480px) {
  .lj-hero__title {
    font-size: 28px;
  }
  .lj-header__actions .btn--secondary {
    display: none;
  }
}

.x7k2a {
  display: none;
}
.bf3e9 {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.qz81p {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: -9999px;
}
.wp-block-group {
  display: block;
}
.entry-content {
  display: block;
}
.wpcf7-form {
  display: none;
}
.elementor-section {
  display: none;
}
.site-description {
  display: none;
}
.widget-area {
  display: none;
}

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