:root {
  --clr-bg: #151028;
  --clr-hdr: #231d47;
  --clr-purple: #8a46f6;
  --clr-purple-hover: #7a35e6;
  --clr-purple-glow: rgba(138, 70, 246, 0.25);
  --clr-white: #ffffff;
  --clr-text: #e8e0f8;
  --clr-text-muted: #9a8ec0;
  --clr-border: rgba(138, 70, 246, 0.18);
  --clr-box: #1e1640;
  --clr-box2: #261f4e;
  --clr-gold: #f5c518;
  --clr-green: #22c55e;
  --clr-red: #ef4444;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-box: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-btn: 0 4px 14px rgba(138, 70, 246, 0.35);
  --font-main:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --trans-fast: 0.18s ease;
  --trans-med: 0.28s ease;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  min-height: 100vh;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--trans-fast);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

.box {
  background: var(--clr-box);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-box);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  padding: 10px 18px;
  transition: all var(--trans-fast);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.btn--sm {
  font-size: 13px;
  padding: 8px 14px;
}

.btn--lg {
  font-size: 16px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
}

.btn--white {
  background: var(--clr-white);
  color: #231d47;
}
.btn--white:hover {
  background: #f0ecff;
  color: var(--clr-purple);
}

.btn--purple {
  background: var(--clr-purple);
  color: var(--clr-white);
  box-shadow: var(--shadow-btn);
}
.btn--purple:hover {
  background: var(--clr-purple-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(138, 70, 246, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--clr-purple);
  border: 1.5px solid var(--clr-purple);
}
.btn--outline:hover {
  background: var(--clr-purple-glow);
}

.btn--app {
  background: var(--clr-box2);
  color: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 12px 22px;
  font-size: 15px;
}
.btn--app:hover {
  border-color: var(--clr-purple);
  background: var(--clr-purple-glow);
}

.wp-site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.site-main {
  flex: 1;
}

.hdr-wrap {
  background: var(--clr-hdr);
  border-bottom: 1px solid var(--clr-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.hdr-container {
  padding-top: 0;
  padding-bottom: 0;
}

.hdr-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
}

.hdr-logo img {
  height: 38px;
  width: auto;
}

.hdr-nav {
  flex: 1;
}

.hdr-nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hdr-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  color: var(--clr-text-muted);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--trans-fast);
}
.hdr-nav-link:hover {
  color: var(--clr-white);
  background: rgba(138, 70, 246, 0.12);
}

.hdr-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hdr-online {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--clr-text-muted);
  padding: 5px 10px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.hdr-online-dot {
  width: 7px;
  height: 7px;
  background: var(--clr-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

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

.hdr-online-label {
  color: var(--clr-text-muted);
}
.hdr-online-count {
  color: var(--clr-green);
  font-weight: 600;
}

.hdr-lang {
  position: relative;
}

.hdr-lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  font-size: 13px;
  font-weight: 500;
  transition: background var(--trans-fast);
  border: 1px solid var(--clr-border);
}
.hdr-lang-btn:hover {
  background: rgba(138, 70, 246, 0.15);
}

.hdr-lang-drop {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--clr-hdr);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  min-width: 100px;
  box-shadow: var(--shadow-box);
  display: none;
  z-index: 200;
  overflow: hidden;
}
.hdr-lang-drop.open {
  display: block;
  animation: fadeDown 0.18s ease;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hdr-lang-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: background var(--trans-fast);
}
.hdr-lang-opt:hover,
.hdr-lang-opt--active {
  background: rgba(138, 70, 246, 0.15);
  color: var(--clr-white);
}

.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--clr-border);
}
.hdr-burger-line {
  width: 20px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all var(--trans-fast);
}
.hdr-burger.active .hdr-burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hdr-burger.active .hdr-burger-line:nth-child(2) {
  opacity: 0;
}
.hdr-burger.active .hdr-burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hdr-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 90;
}
.hdr-mobile-overlay.open {
  display: block;
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 21/8;
  min-height: 340px;
  max-height: 520px;
}

.hero-slides-wrap {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  height: 100%;
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--clr-hdr);
  transition: transform 7s ease;
}
.hero-slide:hover .hero-slide-bg {
  transform: scale(1.03);
}

.hero-slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(21, 16, 40, 0.82) 0%,
    rgba(21, 16, 40, 0.35) 60%,
    transparent 100%
  );
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 660px;
}

.hero-slide-tag {
  display: inline-block;
  background: var(--clr-purple);
  color: var(--clr-white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-slide-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.hero-slide-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
  line-height: 1.5;
}

.hero-slide-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: rgba(35, 29, 71, 0.75);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  z-index: 5;
  transition: all var(--trans-fast);
}
.hero-prev:hover,
.hero-next:hover {
  background: var(--clr-purple);
}
.hero-prev {
  left: 16px;
}
.hero-next {
  right: 16px;
}

.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: all var(--trans-fast);
}
.hero-dot--active {
  background: var(--clr-purple);
  width: 24px;
  border-radius: 4px;
}

.section-wrap {
  padding: 56px 0;
}
.section-wrap--alt {
  background: linear-gradient(
    180deg,
    rgba(35, 29, 71, 0.35) 0%,
    transparent 100%
  );
}

.section-head {
  text-align: center;
  margin-bottom: 36px;
}

.section-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 10px;
}

.section-sub {
  font-size: 15px;
  color: var(--clr-text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.casino-list {
  display: grid;
  gap: 16px;
}

.casino-card {
  background: var(--clr-box);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  align-items: start;
  transition: all var(--trans-fast);
  position: relative;
  overflow: hidden;
}
.casino-card:hover {
  border-color: var(--clr-purple);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(138, 70, 246, 0.18);
}
.casino-card--top3 {
  border-color: rgba(245, 197, 24, 0.35);
}
.casino-card--top1 {
  background: linear-gradient(135deg, #1e1640 0%, #2b1f5a 100%);
}

.casino-num {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--clr-text-muted);
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.casino-card--top3 .casino-num {
  color: var(--clr-gold);
  background: rgba(245, 197, 24, 0.12);
}

.casino-logo-wrap {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 8px;
}
.casino-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.casino-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.casino-top-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.casino-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-white);
}

.casino-country {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--clr-text-muted);
}
.casino-country img {
  width: 16px;
  height: 12px;
  border-radius: 2px;
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-gold);
}
.casino-rating svg {
  color: var(--clr-gold);
}

.casino-bonus {
  font-size: 13px;
  color: var(--clr-green);
  font-weight: 600;
  background: rgba(34, 197, 94, 0.1);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-flex;
}

.casino-license {
  font-size: 12px;
  color: var(--clr-text-muted);
}

.casino-features {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.casino-feature {
  font-size: 11px;
  background: rgba(138, 70, 246, 0.12);
  color: var(--clr-purple);
  padding: 2px 9px;
  border-radius: 20px;
  border: 1px solid rgba(138, 70, 246, 0.2);
}

.casino-meta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.casino-meta-item {
  font-size: 12px;
  color: var(--clr-text-muted);
}
.casino-meta-item strong {
  color: var(--clr-text);
}

.casino-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  flex-shrink: 0;
  padding-top: 8px;
}

.casino-btn-play {
  background: var(--clr-purple);
  color: var(--clr-white);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--trans-fast);
}
.casino-btn-play:hover {
  background: var(--clr-purple-hover);
  transform: translateY(-1px);
}

.casino-btn-review {
  background: transparent;
  border: 1.5px solid var(--clr-border);
  color: var(--clr-text-muted);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  transition: all var(--trans-fast);
}
.casino-btn-review:hover {
  border-color: var(--clr-purple);
  color: var(--clr-purple);
}

.casino-pagination {
  text-align: center;
  margin-top: 28px;
}

.winners-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  background: var(--clr-box);
}

.winners-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  min-width: 900px;
  table-layout: auto;
}

.winners-table th {
  background: transparent;
  color: var(--clr-text-muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(138, 70, 246, 0.15);
  white-space: nowrap;
}

.winners-table td {
  padding: 18px 20px;
  font-size: 15px;
  border-bottom: 1px solid rgba(138, 70, 246, 0.06);
  vertical-align: middle;
  color: var(--clr-text);
}

.winners-table th:nth-child(1),
.winners-table td:nth-child(1) {
  width: 8%;
  text-align: center;
}

.winners-table th:nth-child(2),
.winners-table td:nth-child(2) {
  width: 22%;
}

.winners-table th:nth-child(3),
.winners-table td:nth-child(3) {
  width: 18%;
}

.winners-table th:nth-child(4),
.winners-table td:nth-child(4) {
  width: 16%;
}

.winners-table th:nth-child(5),
.winners-table td:nth-child(5) {
  width: 24%;
}

.winners-table th:nth-child(6),
.winners-table td:nth-child(6) {
  width: 12%;
}

.winners-table tr:last-child td {
  border-bottom: none;
}

.winners-table tbody tr {
  transition: background var(--trans-fast);
}

.winners-table tbody tr:hover {
  background: rgba(138, 70, 246, 0.04);
}

.winners-table td:first-child {
  color: var(--clr-text-muted);
  font-weight: 600;
  font-size: 14px;
}

.winners-table td:nth-child(2) {
  color: var(--clr-white);
  font-weight: 500;
}

.winners-table td:nth-child(4) {
  color: var(--clr-text);
}

.winners-table td:nth-child(6) {
  color: var(--clr-text-muted);
  font-size: 14px;
}

.winner-badge--1 td:first-child {
  color: var(--clr-gold);
  font-weight: 700;
}

.winner-badge--2 td:first-child {
  color: #c0c0c0;
  font-weight: 700;
}

.winner-badge--3 td:first-child {
  color: #cd7f32;
  font-weight: 700;
}

.winner-multiplier {
  font-weight: 700;
  color: var(--clr-purple);
  font-size: 15px;
}

.winner-amount {
  font-weight: 700;
  color: var(--clr-green);
  font-size: 15px;
}

.app-block {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 40px;
  align-items: start;
}

.app-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  margin-bottom: 24px;
}

.app-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--clr-box);
}
.app-table th {
  background: var(--clr-box2);
  color: var(--clr-text-muted);
  font-size: 13px;
  font-weight: 600;
  padding: 11px 16px;
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
  width: 40%;
}
.app-table td {
  padding: 11px 16px;
  font-size: 14px;
  color: var(--clr-text);
  border-bottom: 1px solid rgba(138, 70, 246, 0.07);
}
.app-table tr:last-child th,
.app-table tr:last-child td {
  border-bottom: none;
}

.app-download-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-mockup {
  display: flex;
  justify-content: center;
}
.app-mockup img {
  max-height: 400px;
  width: auto;
  filter: drop-shadow(0 10px 40px rgba(138, 70, 246, 0.3));
}

.demo-block {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}

.demo-frame-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--clr-box);
  border: 1px solid var(--clr-border);
}

.demo-iframe {
  display: block;
}

.demo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 16, 40, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  transition: opacity var(--trans-med);
}
.demo-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.demo-overlay-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px;
}
.demo-overlay-inner p {
  font-size: 16px;
  color: var(--clr-text-muted);
}

.demo-cta {
  background: var(--clr-box);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}

.demo-cta-text {
  font-size: 17px;
  font-weight: 600;
  color: var(--clr-white);
  line-height: 1.5;
}

.demo-cta-btn {
  width: 100%;
}

.demo-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.demo-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--clr-text-muted);
  text-align: left;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--clr-box);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--trans-fast);
}
.faq-item:hover {
  border-color: rgba(138, 70, 246, 0.4);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color var(--trans-fast);
}
.faq-q::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--clr-purple);
  flex-shrink: 0;
  transition: transform var(--trans-fast);
}
.faq-q[aria-expanded="true"]::after {
  content: "−";
}

.faq-a {
  overflow: hidden;
  max-height: 600px;
  transition: max-height 0.32s ease;
}
.faq-a--closed {
  max-height: 0;
}
.faq-a > div {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.author-block {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 32px;
}
.author-avatar {
  width: 80px;
  height: 80px;
  background: rgba(138, 70, 246, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(138, 70, 246, 0.3);
}
.author-info {
  flex: 1;
}
.author-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 4px;
}
.author-role {
  font-size: 13px;
  color: var(--clr-purple);
  font-weight: 500;
  margin-bottom: 10px;
}
.author-bio {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.author-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #0a66c2;
  font-weight: 500;
  padding: 6px 14px;
  background: rgba(10, 102, 194, 0.1);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(10, 102, 194, 0.25);
  transition: all var(--trans-fast);
}
.author-linkedin:hover {
  background: rgba(10, 102, 194, 0.2);
}

.content-block {
  padding: 36px 40px;
  margin: 0 0 28px;
}
.content-h1 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 20px;
  line-height: 1.25;
}

.lj-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-white);
  margin: 28px 0 12px;
  line-height: 1.3;
}
.lj-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-white);
  margin: 22px 0 10px;
}
.lj-content p {
  font-size: 15px;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.lj-content ul,
.lj-content ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.lj-content li {
  font-size: 15px;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}
.lj-content ul li {
  list-style: disc;
}
.lj-content ol li {
  list-style: decimal;
}
.lj-content strong,
.lj-content b {
  color: var(--clr-text);
  font-weight: 600;
}
.lj-content a {
  color: var(--clr-purple);
  text-decoration: underline;
}
.lj-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--clr-border);
}
.lj-content th {
  background: var(--clr-box2);
  color: var(--clr-text);
  font-weight: 600;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
}
.lj-content td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(138, 70, 246, 0.07);
  color: var(--clr-text-muted);
}
.lj-content tr:last-child td {
  border-bottom: none;
}

.lj-footer {
  background: var(--clr-hdr);
  border-top: 1px solid var(--clr-border);
  margin-top: 40px;
}

.footer-wrap {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 44px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  margin-bottom: 36px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo img {
  height: 36px;
  width: auto;
}

.footer-desc {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

.footer-provider {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--clr-text-muted);
}

.footer-nav-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-nav-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.footer-nav-list li {
  margin-bottom: 8px;
}
.footer-nav-list a {
  font-size: 13px;
  color: var(--clr-text-muted);
  transition: color var(--trans-fast);
}
.footer-nav-list a:hover {
  color: var(--clr-purple);
}

.footer-section-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.footer-logos-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-logos-row img {
  height: 28px;
  width: auto;
  filter: brightness(0.7);
  transition: filter var(--trans-fast);
}
.footer-logos-row img:hover {
  filter: brightness(1);
}

.footer-payments {
  margin-bottom: 28px;
}
.footer-trust {
  margin-bottom: 28px;
}

.footer-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  background: rgba(138, 70, 246, 0.07);
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border);
  font-size: 11px;
  color: var(--clr-text-muted);
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding: 20px 0 24px;
}

.footer-age {
  font-size: 12px;
  color: var(--clr-text-muted);
  margin-bottom: 8px;
}
.footer-age strong {
  color: var(--clr-white);
}

.footer-copy {
  font-size: 12px;
  color: var(--clr-text-muted);
  line-height: 1.6;
}
.footer-copy a {
  color: var(--clr-purple);
}

.lj-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.lj-widget.visible {
  transform: translateY(0);
}

.lj-widget-inner {
  background: linear-gradient(90deg, #231d47 0%, #2e2060 100%);
  border-top: 2px solid var(--clr-purple);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.lj-widget-text {
  font-size: 14px;
  color: var(--clr-text);
  font-weight: 500;
}
.lj-widget-text strong {
  color: var(--clr-white);
  font-weight: 700;
}

.lj-widget-btn {
  background: var(--clr-purple);
  color: var(--clr-white);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  transition: all var(--trans-fast);
  text-decoration: none;
  display: inline-block;
}
.lj-widget-btn:hover {
  background: var(--clr-purple-hover);
}

.lj-widget-close {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--clr-text-muted);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans-fast);
  line-height: 1;
}
.lj-widget-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--clr-white);
}

.technical-page {
  padding: 40px 44px;
  margin: 32px 0;
}
.breadcrumb {
  font-size: 13px;
  color: var(--clr-text-muted);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: var(--clr-purple);
}
.breadcrumb span[aria-hidden] {
  margin: 0 6px;
}
.technical-h1 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 28px;
  line-height: 1.25;
}
.technical-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-white);
  margin: 26px 0 10px;
}
.technical-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--clr-white);
  margin: 20px 0 8px;
}
.technical-content p {
  font-size: 15px;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.technical-content ul,
.technical-content ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.technical-content li {
  font-size: 15px;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}
.technical-content ul li {
  list-style: disc;
}
.technical-content ol li {
  list-style: decimal;
}

.wp-block-query {
  display: none;
}
.elementor-section {
  width: 100%;
}

.lx7a2 {
  position: relative;
}
.wp-content-loader {
  display: none;
}
.elementor-widget-wrap {
  display: contents;
}

@media (max-width: 1024px) {
  .app-block {
    grid-template-columns: 1fr;
  }
  .app-mockup {
    display: none;
  }
  .demo-block {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .winners-table {
    min-width: 800px;
  }
}

@media (max-width: 768px) {
  .hdr-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--clr-hdr);
    border-bottom: 1px solid var(--clr-border);
    z-index: 95;
    padding: 16px;
    flex-direction: column;
  }
  .hdr-nav.open {
    display: flex;
    animation: fadeDown 0.22s ease;
  }
  .hdr-nav-list {
    flex-direction: column;
    gap: 2px;
  }
  .hdr-nav-link {
    padding: 12px 14px;
    font-size: 15px;
  }
  .hdr-burger {
    display: flex;
  }
  .hdr-online {
    display: none;
  }
  .hero-slider {
    aspect-ratio: 4/3;
    min-height: 260px;
  }
  .hero-slide-content {
    padding: 0 24px;
    max-width: 100%;
  }
  .hero-slide-title {
    font-size: clamp(22px, 5vw, 34px);
  }
  .casino-card {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
  }
  .casino-btns {
    flex-direction: row;
    justify-content: flex-start;
    padding-top: 0;
    grid-column: 1 / -1;
  }
  .author-block {
    flex-direction: column;
  }
  .footer-nav-group {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .content-block {
    padding: 24px 20px;
  }
  .technical-page {
    padding: 24px 20px;
  }
  .winners-table {
    min-width: 700px;
  }
  .winners-table th,
  .winners-table td {
    padding: 14px 16px;
    font-size: 14px;
  }
  .winner-multiplier,
  .winner-amount {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .section-wrap {
    padding: 36px 0;
  }
  .hero-slide-btns {
    flex-direction: column;
  }
  .hero-slide-btns .btn {
    width: 100%;
  }
  .lj-widget-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
