:root {
  --myd-primary: #37003C;
  --myd-primary-dark: #1A001D;
  --myd-primary-light: #4A0050;
  --myd-secondary: #00FF87;
  --myd-secondary-dark: #00CC6A;
  --myd-accent: #04F5FF;
  --myd-accent-alt: #FFD700;
  --myd-bg: #13111C;
  --myd-bg-alt: #1C1827;
  --myd-surface: #2D2640;
  --myd-surface-hover: #3D3455;
  --myd-text: #F5F3FF;
  --myd-text-muted: #A5A0C0;
  --myd-text-on-primary: #FFFFFF;
  --myd-border: rgba(167,139,250,0.15);
  --myd-shadow: rgba(0,0,0,0.6);
  --myd-overlay: rgba(19,17,28,0.9);
  --myd-success: #22C55E;
  --myd-warning: #F59E0B;
  --myd-error: #EF4444;
  --myd-info: #3B82F6;
  --myd-radius: 12px;
  --myd-radius-sm: 6px;
  --myd-radius-lg: 20px;
  --myd-transition: 0.25s ease;
  --myd-font-head: 'Poppins', sans-serif;
  --myd-font-body: 'Inter', sans-serif;
  --myd-container-max: 1280px;
  --myd-header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--myd-font-body);
  background-color: var(--myd-bg);
  color: var(--myd-text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

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

a {
  color: var(--myd-secondary);
  text-decoration: none;
  transition: color var(--myd-transition);
}

a:hover {
  color: var(--myd-accent);
}

ul {
  list-style: none;
}

.ljs-container {
  width: 100%;
  max-width: var(--myd-container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.ljs-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--myd-header-h);
  background: rgba(19, 17, 28, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--myd-border);
  transition: box-shadow var(--myd-transition), background var(--myd-transition);
}

.ljs-header.is-scrolled {
  background: rgba(19, 17, 28, 0.98);
  box-shadow: 0 4px 24px var(--myd-shadow);
  height: 60px;
}

.ljs-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  flex-wrap: wrap;
  gap: 12px;
}

.ljs-header__logo-link {
  text-decoration: none;
  flex-shrink: 0;
}

.ljs-header__logo-text {
  font-family: var(--myd-font-head);
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--myd-secondary), var(--myd-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.ljs-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.ljs-header__nav-list {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.ljs-header__nav-link {
  font-family: var(--myd-font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--myd-text-muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--myd-radius-sm);
  transition: color var(--myd-transition), background var(--myd-transition);
}

.ljs-header__nav-link:hover,
.ljs-header__nav-link.is-active {
  color: var(--myd-text);
  background: rgba(167, 139, 250, 0.1);
}

.ljs-header__nav-close {
  display: none;
}

.ljs-header__auth {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.ljs-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  outline: none;
  border-radius: var(--myd-radius-sm);
}

.ljs-header__burger:hover {
  opacity: 0.9;
}

.ljs-header__burger:focus-visible {
  outline: 2px solid var(--myd-secondary);
  outline-offset: 2px;
}

.ljs-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--myd-text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.ljs-header__burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ljs-header__burger.is-active span:nth-child(2) {
  opacity: 0;
}

.ljs-header__burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.ljs-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(19, 17, 28, 0.85);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.ljs-nav-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.ljs-btn {
  font-family: var(--myd-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--myd-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all var(--myd-transition);
  white-space: nowrap;
}

.ljs-btn--primary {
  background: linear-gradient(135deg, var(--myd-secondary), var(--myd-secondary-dark));
  color: var(--myd-primary-dark);
  border-color: transparent;
}

.ljs-btn--primary:hover {
  background: linear-gradient(135deg, var(--myd-secondary-dark), var(--myd-secondary));
  color: var(--myd-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 255, 135, 0.3);
}

.ljs-btn--secondary {
  background: linear-gradient(135deg, var(--myd-accent), var(--myd-info));
  color: var(--myd-primary-dark);
  border-color: transparent;
}

.ljs-btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(4, 245, 255, 0.3);
  color: var(--myd-primary-dark);
}

.ljs-btn--ghost {
  background: transparent;
  color: var(--myd-text);
  border-color: var(--myd-border);
}

.ljs-btn--ghost:hover {
  border-color: var(--myd-secondary);
  color: var(--myd-secondary);
  background: rgba(0, 255, 135, 0.05);
}

.ljs-btn--lg {
  font-size: 1rem;
  padding: 14px 32px;
}

.ljs-btn--sm {
  font-size: 0.8rem;
  padding: 7px 14px;
}

.ljs-btn--full {
  width: 100%;
}

.ljs-hero--dashboard {
  display: flex;
  min-height: 540px;
  height: 85vh;
  padding-top: var(--myd-header-h);
  position: relative;
  overflow: hidden;
}

.ljs-hero__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  max-width: var(--myd-container-max);
  margin: 0 auto;
  padding: 40px 24px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.ljs-hero__text {
  flex: 1 1 400px;
  min-width: 300px;
  text-align: left;
  animation: slideInLeft 0.7s ease both;
}

.ljs-hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--myd-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  background: rgba(0, 255, 135, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 135, 0.2);
}

.ljs-hero__title {
  font-family: var(--myd-font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--myd-text);
}

.ljs-hero__subtitle {
  font-size: 1.05rem;
  color: var(--myd-text-muted);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}

.ljs-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.ljs-hero__age-note {
  font-size: 0.75rem;
  color: var(--myd-text-muted);
  opacity: 0.8;
}

.ljs-hero__widgets {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: slideInRight 0.7s ease 0.2s both;
}

.ljs-widget {
  background: rgba(45, 38, 64, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--myd-border);
  border-radius: var(--myd-radius);
  padding: 20px;
}

.ljs-widget__label {
  display: block;
  font-size: 0.75rem;
  color: var(--myd-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-weight: 600;
}

.ljs-widget__value {
  display: block;
  font-family: var(--myd-font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--myd-secondary);
}

.ljs-widget__sub {
  display: block;
  font-size: 0.8rem;
  color: var(--myd-text-muted);
  margin-top: 4px;
}

.ljs-countdown__display {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.ljs-countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
}

.ljs-countdown__num {
  font-family: var(--myd-font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--myd-accent);
  line-height: 1;
}

.ljs-countdown__lbl {
  font-size: 0.65rem;
  color: var(--myd-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ljs-countdown__sep {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--myd-text-muted);
  align-self: flex-start;
  margin-top: 2px;
}

.ljs-widget__facts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.ljs-widget__facts li {
  font-size: 0.85rem;
  color: var(--myd-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ljs-widget__fact-icon {
  font-size: 1rem;
}

.ljs-hero__image-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.ljs-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ljs-hero__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, var(--myd-bg) 0%, rgba(19,17,28,0.4) 60%, rgba(19,17,28,0.1) 100%);
}

.ljs-section {
  padding: 80px 0;
}

.ljs-section--stats {
  background: var(--myd-bg-alt);
  padding: 48px 0;
}

.ljs-stats-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.ljs-stat-card {
  flex: 1 1 180px;
  background: var(--myd-surface);
  border: 1px solid var(--myd-border);
  border-radius: var(--myd-radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform var(--myd-transition), border-color var(--myd-transition);
}

.ljs-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 135, 0.3);
}

.ljs-stat-card__number {
  display: block;
  font-family: var(--myd-font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--myd-secondary);
  margin-bottom: 6px;
}

.ljs-stat-card__label {
  font-size: 0.85rem;
  color: var(--myd-text-muted);
  font-weight: 500;
}

.ljs-section--lotto-desc {
  background: var(--myd-bg);
}

.ljs-section--split {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.ljs-section__text-block {
  flex: 1 1 380px;
}

.ljs-section__rules-block {
  flex: 1 1 320px;
  background: var(--myd-surface);
  border: 1px solid var(--myd-border);
  border-radius: var(--myd-radius-lg);
  padding: 32px;
}

.ljs-section__title {
  font-family: var(--myd-font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--myd-text);
  margin-bottom: 20px;
  line-height: 1.2;
}

.ljs-section__title--center {
  text-align: center;
}

.ljs-section__subtitle {
  font-size: 1.05rem;
  color: var(--myd-text-muted);
  margin-bottom: 48px;
}

.ljs-section__subtitle--center {
  text-align: center;
}

.ljs-section__body {
  color: var(--myd-text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.ljs-section__body--center {
  text-align: center;
}

.ljs-section__visual-block {
  flex: 1 1 320px;
}

.ljs-rules__title {
  font-family: var(--myd-font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--myd-secondary);
  margin-bottom: 20px;
}

.ljs-rules__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ljs-rules__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--myd-text-muted);
  line-height: 1.5;
}

.ljs-rules__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ljs-section--how-to {
  background: var(--myd-bg-alt);
}

.ljs-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.ljs-step-card {
  background: var(--myd-surface);
  border: 1px solid var(--myd-border);
  border-radius: var(--myd-radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--myd-transition), border-color var(--myd-transition), box-shadow var(--myd-transition);
  animation: slideUp 0.5s ease both;
}

.ljs-step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 135, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.ljs-step-card__num {
  font-family: var(--myd-font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(0, 255, 135, 0.15);
  margin-bottom: 12px;
  line-height: 1;
}

.ljs-step-card__icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 16px;
}

.ljs-step-card__title {
  font-family: var(--myd-font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--myd-text);
  margin-bottom: 10px;
}

.ljs-step-card__body {
  font-size: 0.875rem;
  color: var(--myd-text-muted);
  line-height: 1.6;
}

.ljs-section--jackpots {
  background: var(--myd-bg);
}

.ljs-jackpot-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content: center;
}

.ljs-jackpot-card {
  flex: 1 1 220px;
  max-width: 320px;
  background: var(--myd-surface);
  border: 1px solid var(--myd-border);
  border-radius: var(--myd-radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: transform var(--myd-transition);
  position: relative;
}

.ljs-jackpot-card--featured {
  border-color: rgba(0, 255, 135, 0.4);
  background: linear-gradient(135deg, var(--myd-surface), rgba(0,255,135,0.05));
}

.ljs-jackpot-card__badge {
  display: inline-block;
  background: var(--myd-secondary);
  color: var(--myd-primary-dark);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.ljs-jackpot-card__date {
  font-size: 0.85rem;
  color: var(--myd-text-muted);
  margin-bottom: 10px;
}

.ljs-jackpot-card__amount {
  font-family: var(--myd-font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--myd-accent-alt);
  margin-bottom: 20px;
}

.ljs-section--results {
  background: var(--myd-bg-alt);
}

.ljs-results-table-wrap {
  overflow-x: auto;
  margin-top: 40px;
  border-radius: var(--myd-radius);
  border: 1px solid var(--myd-border);
}

.ljs-results-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.ljs-results-table th {
  background: var(--myd-primary);
  color: var(--myd-text);
  font-weight: 600;
  padding: 14px 16px;
  text-align: left;
  white-space: nowrap;
}

.ljs-results-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--myd-border);
  color: var(--myd-text-muted);
  vertical-align: middle;
}

.ljs-results-table tbody tr:hover {
  background: var(--myd-surface);
}

.ljs-balls {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.ljs-ball {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--myd-primary-light), var(--myd-primary));
  border: 2px solid rgba(167,139,250,0.4);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--myd-text);
  flex-shrink: 0;
}

.ljs-ball--extra {
  background: linear-gradient(135deg, var(--myd-secondary-dark), var(--myd-secondary));
  color: var(--myd-primary-dark);
  border-color: rgba(0,255,135,0.4);
}

.ljs-section--why {
  background: var(--myd-bg);
}

.ljs-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.ljs-card {
  background: var(--myd-surface);
  border: 1px solid var(--myd-border);
  border-radius: var(--myd-radius-lg);
  transition: transform var(--myd-transition), border-color var(--myd-transition), box-shadow var(--myd-transition);
}

.ljs-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 135, 0.2);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}

.ljs-why-card {
  padding: 28px 24px;
}

.ljs-why-card__icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.ljs-why-card__title {
  font-family: var(--myd-font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--myd-text);
  margin-bottom: 10px;
}

.ljs-why-card__body {
  font-size: 0.875rem;
  color: var(--myd-text-muted);
  line-height: 1.6;
}

.ljs-section--responsible {
  background: linear-gradient(135deg, var(--myd-primary-dark), var(--myd-primary));
  padding: 80px 0;
}

.ljs-responsible-wrap {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.ljs-responsible__content {
  flex: 1 1 380px;
}

.ljs-responsible__content .ljs-section__title {
  color: var(--myd-text-on-primary);
}

.ljs-responsible__content .ljs-section__body {
  color: rgba(245, 243, 255, 0.75);
}

.ljs-responsible__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.ljs-responsible__badges {
  flex: 0 0 200px;
  text-align: center;
}

.ljs-responsible__age {
  font-family: var(--myd-font-head);
  font-size: 5rem;
  font-weight: 700;
  color: var(--myd-secondary);
  line-height: 1;
}

.ljs-responsible__tagline {
  font-size: 0.85rem;
  color: rgba(245,243,255,0.7);
  margin-top: 8px;
}

.ljs-section--faq {
  background: var(--myd-bg-alt);
}

.ljs-faq-list {
  max-width: 780px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ljs-faq-item {
  background: var(--myd-surface);
  border: 1px solid var(--myd-border);
  border-radius: var(--myd-radius);
  overflow: hidden;
  transition: border-color var(--myd-transition);
}

.ljs-faq-item[open] {
  border-color: rgba(0, 255, 135, 0.3);
}

.ljs-faq-item__q {
  padding: 18px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--myd-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.ljs-faq-item__q::-webkit-details-marker {
  display: none;
}

.ljs-faq-item__q::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--myd-secondary);
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform var(--myd-transition);
}

.ljs-faq-item[open] .ljs-faq-item__q::after {
  transform: rotate(45deg);
}

.ljs-faq-item__a {
  padding: 0 24px 18px;
  font-size: 0.875rem;
  color: var(--myd-text-muted);
  line-height: 1.7;
}

.ljs-footer {
  background: var(--myd-primary-dark);
  border-top: 1px solid var(--myd-border);
  padding: 60px 0 0;
}

.ljs-footer__top {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.ljs-footer__brand {
  flex: 1 1 240px;
}

.ljs-footer__logo-text {
  font-family: var(--myd-font-head);
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--myd-secondary), var(--myd-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 12px;
}

.ljs-footer__brand-desc {
  font-size: 0.85rem;
  color: var(--myd-text-muted);
  line-height: 1.6;
}

.ljs-footer__nav-group {
  flex: 1 1 160px;
}

.ljs-footer__nav-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--myd-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.ljs-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ljs-footer__nav-link {
  font-size: 0.875rem;
  color: var(--myd-text-muted);
  text-decoration: none;
  transition: color var(--myd-transition);
}

.ljs-footer__nav-link:hover {
  color: var(--myd-secondary);
}

.ljs-footer__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--myd-border);
  border-bottom: 1px solid var(--myd-border);
  margin-bottom: 24px;
}

.ljs-footer__logo-link {
  display: inline-flex;
  align-items: center;
  transition: opacity var(--myd-transition);
}

.ljs-footer__logo-link:hover {
  opacity: 0.7;
}

.ljs-footer__logo-img {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity var(--myd-transition);
}

.ljs-footer__logo-link:hover .ljs-footer__logo-img {
  opacity: 1;
}

.ljs-footer__badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
}

.ljs-footer__badge-link {
  display: inline-flex;
  transition: opacity var(--myd-transition);
}

.ljs-footer__badge-link:hover {
  opacity: 0.8;
}

.ljs-footer__badge-img {
  height: 48px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}

.ljs-footer__compliance {
  font-size: 0.75rem;
  color: var(--myd-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  opacity: 0.7;
}

.ljs-footer__compliance p {
  margin-bottom: 4px;
}

.ljs-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--myd-border);
  font-size: 0.8rem;
  color: var(--myd-text-muted);
}

.ljs-footer__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.ljs-footer__link {
  font-size: 0.8rem;
  color: var(--myd-text-muted);
  text-decoration: none;
  transition: color var(--myd-transition);
}

.ljs-footer__link:hover {
  color: var(--myd-secondary);
}

.ljs-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.ljs-modal.is-visible {
  display: flex;
}

.ljs-modal__backdrop {
  position: absolute;
  inset: 0;
  background: var(--myd-overlay);
  backdrop-filter: blur(8px);
}

.ljs-modal__box {
  position: relative;
  z-index: 1;
  background: var(--myd-surface);
  border: 1px solid var(--myd-border);
  border-radius: var(--myd-radius-lg);
  padding: 40px 36px;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease both;
}

.ljs-modal__box--success {
  text-align: center;
}

.ljs-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--myd-text-muted);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color var(--myd-transition);
}

.ljs-modal__close:hover {
  color: var(--myd-text);
}

.ljs-modal__title {
  font-family: var(--myd-font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--myd-text);
  margin-bottom: 24px;
}

.ljs-modal__body {
  color: var(--myd-text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.ljs-modal__switch {
  text-align: center;
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--myd-text-muted);
}

.ljs-modal__switch-btn {
  background: none;
  border: none;
  color: var(--myd-secondary);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  transition: color var(--myd-transition);
}

.ljs-modal__switch-btn:hover {
  color: var(--myd-accent);
}

.ljs-modal__success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.ljs-form__group {
  margin-bottom: 18px;
}

.ljs-form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--myd-text);
  margin-bottom: 6px;
}

.ljs-form__input {
  width: 100%;
  background: rgba(19,17,28,0.8);
  border: 1px solid var(--myd-border);
  border-radius: var(--myd-radius-sm);
  color: var(--myd-text);
  font-family: var(--myd-font-body);
  font-size: 0.9rem;
  padding: 11px 14px;
  transition: border-color var(--myd-transition);
  outline: none;
  appearance: none;
}

.ljs-form__input:focus {
  border-color: var(--myd-secondary);
  box-shadow: 0 0 0 3px rgba(0,255,135,0.1);
}

.ljs-form__input::placeholder {
  color: var(--myd-text-muted);
  opacity: 0.5;
}

.ljs-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.ljs-form__select {
  cursor: pointer;
}

.ljs-form__group--check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ljs-form__checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--myd-secondary);
}

.ljs-form__check-label {
  font-size: 0.85rem;
  color: var(--myd-text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.ljs-form__link {
  color: var(--myd-secondary);
}

.ljs-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: var(--myd-surface);
  border-top: 1px solid var(--myd-border);
  padding: 16px 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.ljs-cookie-banner.is-visible {
  transform: translateY(0);
}

.ljs-cookie-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  max-width: var(--myd-container-max);
  margin: 0 auto;
}

.ljs-cookie-banner__text {
  font-size: 0.875rem;
  color: var(--myd-text-muted);
  flex: 1 1 200px;
}

.ljs-cookie-banner__link {
  color: var(--myd-secondary);
}

.ljs-cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ljs-back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--myd-secondary), var(--myd-secondary-dark));
  color: var(--myd-primary-dark);
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--myd-transition), transform var(--myd-transition);
  box-shadow: 0 4px 16px rgba(0,255,135,0.3);
}

.ljs-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.ljs-back-to-top:hover {
  transform: translateY(-4px);
}

.ljs-page-hero {
  background: linear-gradient(135deg, var(--myd-primary-dark) 0%, var(--myd-primary) 60%, var(--myd-primary-light) 100%);
  padding: calc(var(--myd-header-h) + 60px) 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--myd-border);
}

.ljs-page-hero--about {
  background: linear-gradient(135deg, var(--myd-primary-dark), var(--myd-primary-light));
}

.ljs-page-hero--buy {
  background: linear-gradient(135deg, var(--myd-primary), var(--myd-bg-alt));
}

.ljs-page-hero--contact {
  background: linear-gradient(135deg, var(--myd-bg-alt), var(--myd-primary));
}

.ljs-page-hero--legal {
  background: linear-gradient(135deg, var(--myd-bg), var(--myd-primary-dark));
}

.ljs-page-hero--resp {
  background: linear-gradient(135deg, var(--myd-primary-dark), var(--myd-primary));
}

.ljs-page-hero__title {
  font-family: var(--myd-font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--myd-text);
  margin-bottom: 12px;
}

.ljs-page-hero__sub {
  font-size: 1.05rem;
  color: var(--myd-text-muted);
}

.ljs-section--about-intro {
  background: var(--myd-bg);
}

.ljs-about-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ljs-about-value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--myd-surface);
  border: 1px solid var(--myd-border);
  border-radius: var(--myd-radius);
  padding: 20px;
}

.ljs-about-value__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.ljs-about-value__title {
  font-family: var(--myd-font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--myd-text);
  margin-bottom: 4px;
}

.ljs-about-value__text {
  font-size: 0.85rem;
  color: var(--myd-text-muted);
  line-height: 1.5;
}

.ljs-section--pillars {
  background: var(--myd-bg-alt);
}

.ljs-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.ljs-pillar-card {
  padding: 28px 24px;
}

.ljs-pillar-card__icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.ljs-pillar-card__title {
  font-family: var(--myd-font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--myd-text);
  margin-bottom: 10px;
}

.ljs-pillar-card__body {
  font-size: 0.875rem;
  color: var(--myd-text-muted);
  line-height: 1.6;
}

.ljs-section--team-stats {
  background: var(--myd-bg);
}

.ljs-section--license {
  background: linear-gradient(135deg, var(--myd-primary), var(--myd-primary-dark));
  padding: 80px 0;
}

.ljs-section--narrow {
  max-width: 700px;
  margin: 0 auto;
}

.ljs-license__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

.ljs-ticket-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.ljs-ticket-main {
  flex: 1 1 480px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ljs-ticket-aside {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ljs-ticket-card {
  padding: 32px 28px;
}

.ljs-ticket-card__title {
  font-family: var(--myd-font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--myd-text);
  margin-bottom: 8px;
}

.ljs-ticket-card__info {
  font-size: 0.875rem;
  color: var(--myd-text-muted);
  margin-bottom: 24px;
}

.ljs-ticket-section {
  margin-bottom: 24px;
}

.ljs-ticket-section__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--myd-text);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ljs-ticket-section__count {
  font-size: 0.8rem;
  color: var(--myd-secondary);
  font-weight: 400;
}

.ljs-number-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ljs-number-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--myd-border);
  background: rgba(19,17,28,0.6);
  color: var(--myd-text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--myd-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ljs-number-btn:hover {
  border-color: var(--myd-secondary);
  color: var(--myd-secondary);
  background: rgba(0,255,135,0.08);
}

.ljs-number-btn.is-selected {
  background: linear-gradient(135deg, var(--myd-secondary), var(--myd-secondary-dark));
  border-color: var(--myd-secondary);
  color: var(--myd-primary-dark);
  font-weight: 700;
}

.ljs-number-btn--extra.is-selected {
  background: linear-gradient(135deg, var(--myd-accent), var(--myd-info));
  border-color: var(--myd-accent);
  color: var(--myd-primary-dark);
}

.ljs-ticket-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.ljs-selected-display {
  background: rgba(19,17,28,0.5);
  border: 1px solid var(--myd-border);
  border-radius: var(--myd-radius-sm);
  padding: 14px 16px;
}

.ljs-selected-display__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--myd-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}

.ljs-selected-display__numbers {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--myd-text-muted);
}

.ljs-confirm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--myd-border);
  font-size: 0.9rem;
  color: var(--myd-text-muted);
}

.ljs-confirm-row--total {
  font-weight: 700;
  color: var(--myd-text);
  font-size: 1.05rem;
  border-bottom: none;
  padding-top: 14px;
  margin-bottom: 16px;
}

.ljs-confirm-val {
  color: var(--myd-text);
}

.ljs-confirm-row--total .ljs-confirm-val {
  color: var(--myd-secondary);
  font-size: 1.2rem;
}

.ljs-ticket-note {
  font-size: 0.75rem;
  color: var(--myd-text-muted);
  text-align: center;
  margin-top: 12px;
  opacity: 0.7;
}

.ljs-aside-card {
  padding: 20px;
  background: var(--myd-surface);
  border: 1px solid var(--myd-border);
  border-radius: var(--myd-radius);
}

.ljs-aside-card__title {
  font-family: var(--myd-font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--myd-text);
  margin-bottom: 12px;
}

.ljs-aside-jackpot {
  font-family: var(--myd-font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--myd-accent-alt);
  margin-bottom: 6px;
}

.ljs-aside-card__draw {
  font-size: 0.8rem;
  color: var(--myd-text-muted);
  margin-bottom: 12px;
}

.ljs-aside-countdown {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.ljs-aside-rules {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ljs-aside-rules li {
  font-size: 0.85rem;
  color: var(--myd-text-muted);
  padding-left: 14px;
  position: relative;
}

.ljs-aside-rules li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--myd-secondary);
}

.ljs-prize-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.ljs-prize-table th {
  text-align: left;
  padding: 8px 6px;
  color: var(--myd-text-muted);
  font-weight: 600;
  border-bottom: 1px solid var(--myd-border);
}

.ljs-prize-table td {
  padding: 8px 6px;
  color: var(--myd-text-muted);
  border-bottom: 1px solid rgba(167,139,250,0.05);
}

.ljs-prize-table tr:first-child td {
  color: var(--myd-accent-alt);
  font-weight: 700;
}

.ljs-aside-card__text {
  font-size: 0.85rem;
  color: var(--myd-text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.ljs-aside-card--responsible {
  border-color: rgba(0,255,135,0.2);
}

.ljs-aside-card--help {
  border-color: rgba(4,245,255,0.2);
}

.ljs-contact-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.ljs-contact-form-wrap {
  flex: 1 1 480px;
}

.ljs-contact-aside {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ljs-contact-card {
  padding: 32px 28px;
  background: var(--myd-surface);
  border: 1px solid var(--myd-border);
  border-radius: var(--myd-radius-lg);
}

.ljs-contact-card__title {
  font-family: var(--myd-font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--myd-text);
  margin-bottom: 8px;
}

.ljs-contact-card__desc {
  font-size: 0.875rem;
  color: var(--myd-text-muted);
  margin-bottom: 24px;
}

.ljs-contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ljs-contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ljs-contact-info-item__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.ljs-contact-info-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--myd-text);
  margin-bottom: 2px;
}

.ljs-contact-info-item p {
  font-size: 0.85rem;
  color: var(--myd-text-muted);
}

.ljs-aside-quick-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ljs-aside-link {
  font-size: 0.875rem;
  color: var(--myd-text-muted);
  text-decoration: none;
  transition: color var(--myd-transition);
  padding-left: 12px;
  position: relative;
}

.ljs-aside-link::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--myd-secondary);
}

.ljs-aside-link:hover {
  color: var(--myd-secondary);
}

.ljs-section--legal {
  background: var(--myd-bg);
  padding: 60px 0 80px;
}

.ljs-legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.ljs-legal-intro {
  font-size: 1rem;
  color: var(--myd-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  padding: 20px 24px;
  background: var(--myd-surface);
  border-left: 3px solid var(--myd-secondary);
  border-radius: 0 var(--myd-radius-sm) var(--myd-radius-sm) 0;
}

.ljs-legal-h2 {
  font-family: var(--myd-font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--myd-text);
  margin: 36px 0 14px;
}

.ljs-legal-h3 {
  font-family: var(--myd-font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--myd-secondary);
  margin: 24px 0 10px;
}

.ljs-legal-content p {
  font-size: 0.9rem;
  color: var(--myd-text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.ljs-legal-list {
  list-style: disc;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.ljs-legal-list li {
  font-size: 0.875rem;
  color: var(--myd-text-muted);
  line-height: 1.6;
}

.ljs-legal-link {
  color: var(--myd-secondary);
  text-decoration: underline;
}

.ljs-legal-link:hover {
  color: var(--myd-accent);
}

.ljs-resp-alert {
  background: rgba(0,255,135,0.1);
  border: 1px solid rgba(0,255,135,0.3);
  border-radius: var(--myd-radius);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--myd-text);
  margin-bottom: 32px;
}

.ljs-resp-resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.ljs-resp-resource-card {
  background: var(--myd-surface);
  border: 1px solid var(--myd-border);
  border-radius: var(--myd-radius);
  padding: 20px;
}

.ljs-resp-resource-card__title {
  font-family: var(--myd-font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--myd-secondary);
  margin-bottom: 8px;
}

.ljs-resp-resource-card p {
  font-size: 0.8rem;
  color: var(--myd-text-muted);
  margin-bottom: 12px;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .ljs-hero__image-panel {
    display: none;
  }

  .ljs-hero__content {
    justify-content: center;
  }

  .ljs-hero__text {
    text-align: center;
  }

  .ljs-hero__subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .ljs-hero__ctas {
    justify-content: center;
  }

  .ljs-hero__widgets {
    flex: 1 1 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .ljs-widget {
    flex: 1 1 200px;
  }
}

@media (max-width: 768px) {
  .ljs-header__burger {
    display: flex;
  }

  .ljs-header__nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 14px 14px 0 auto;
    padding: 0;
    border: none;
    border-radius: var(--myd-radius-sm);
    background: rgba(255, 255, 255, 0.08);
    color: var(--myd-text);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
  }

  .ljs-header__nav-close:hover {
    background: rgba(255, 255, 255, 0.12);
  }

  .ljs-header__nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: min(320px, 92vw);
    max-width: 320px;
    min-height: 100vh;
    background: var(--myd-bg-alt);
    border-left: 1px solid var(--myd-border);
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    gap: 0;
    transition: right 0.35s ease;
    z-index: 999;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.4);
  }

  .ljs-header__nav.is-open {
    right: 0;
    z-index: 1001;
    isolation: isolate;
  }

  body.nav-open {
    overflow: hidden;
  }

  .ljs-header__nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 16px 20px 20px;
    border-bottom: 1px solid var(--myd-border);
    flex-shrink: 0;
  }

  .ljs-header__nav-list li {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
  }

  .ljs-header__nav-link {
    display: block;
    font-size: 1.05rem;
    padding: 14px 16px;
    min-height: 48px;
    box-sizing: border-box;
    width: 100%;
    border-radius: var(--myd-radius-sm);
    color: var(--myd-text);
    font-weight: 500;
  }

  .ljs-header__nav-link:hover,
  .ljs-header__nav-link.is-active {
    color: var(--myd-secondary);
    background: rgba(0, 255, 135, 0.08);
  }

  .ljs-header__auth {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 24px 20px 32px;
    gap: 12px;
    flex-shrink: 0;
  }

  .ljs-header__auth .ljs-btn {
    width: 100%;
    justify-content: center;
  }

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

  .ljs-hero--dashboard {
    height: auto;
    min-height: 540px;
    padding-bottom: 40px;
  }

  .ljs-ticket-layout {
    flex-direction: column;
  }

  .ljs-ticket-aside {
    flex: 1 1 auto;
    width: 100%;
  }

  .ljs-contact-layout {
    flex-direction: column;
  }

  .ljs-contact-aside {
    flex: 1 1 auto;
    width: 100%;
  }

  .ljs-results-table th,
  .ljs-results-table td {
    padding: 10px 10px;
  }

  .ljs-footer__top {
    gap: 32px;
  }

  .ljs-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .ljs-responsible-wrap {
    flex-direction: column;
  }

  .ljs-responsible__badges {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .ljs-stats-grid {
    gap: 12px;
  }

  .ljs-hero__widgets {
    flex-direction: column;
  }

  .ljs-widget {
    flex: 1 1 100%;
  }

  .ljs-jackpot-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .ljs-jackpot-card {
    max-width: 100%;
  }

  .ljs-modal__box {
    padding: 28px 20px;
  }

  .ljs-btn--lg {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .ljs-number-btn {
    width: 36px;
    height: 36px;
    font-size: 0.75rem;
  }
}