:root {
  --hit-primary: #37003C;
  --hit-primary-dark: #1A001D;
  --hit-primary-light: #4A0050;
  --hit-secondary: #00FF87;
  --hit-secondary-dark: #00CC6A;
  --hit-accent: #04F5FF;
  --hit-accent-alt: #FFD700;
  --hit-bg: #0D0D0D;
  --hit-bg-alt: #1A1A1A;
  --hit-surface: #252525;
  --hit-surface-hover: #333333;
  --hit-text: #FFFFFF;
  --hit-text-muted: #A0A0A0;
  --hit-text-on-primary: #FFFFFF;
  --hit-border: rgba(255,255,255,0.1);
  --hit-shadow: rgba(0,0,0,0.5);
  --hit-overlay: rgba(0,0,0,0.8);
  --hit-success: #22C55E;
  --hit-warning: #F59E0B;
  --hit-error: #EF4444;
  --hit-info: #3B82F6;
  --hit-radius: 12px;
  --hit-radius-sm: 6px;
  --hit-radius-lg: 20px;
  --hit-transition: 0.25s ease;
  --hit-header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  background-color: var(--hit-bg);
  color: var(--hit-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul {
  list-style: none;
}

.ljs-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ljs-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--hit-header-height);
  background: transparent;
  transition: background var(--hit-transition), box-shadow var(--hit-transition);
}

.ljs-header.is-scrolled,
.ljs-header--solid {
  background: var(--hit-primary-dark);
  box-shadow: 0 2px 20px var(--hit-shadow);
}

.ljs-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: var(--hit-header-height);
}

.ljs-header__logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.ljs-header__logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--hit-secondary);
  letter-spacing: -0.5px;
  text-shadow: 0 0 20px rgba(0,255,135,0.4);
}

.ljs-header__nav {
  display: flex;
  align-items: center;
}

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

.ljs-header__nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--hit-text);
  padding: 0.5rem 0.75rem;
  border-radius: var(--hit-radius-sm);
  transition: color var(--hit-transition), background var(--hit-transition);
  text-decoration: none;
}

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

.ljs-header__nav-btn {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}

.ljs-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

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

.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-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--hit-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--hit-transition);
  text-decoration: none;
  white-space: nowrap;
}

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

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

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

.ljs-btn--secondary:hover {
  background: var(--hit-primary-light);
  box-shadow: 0 8px 24px rgba(0,255,135,0.2);
  color: var(--hit-secondary);
}

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

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

.ljs-btn--lg {
  font-size: 1.05rem;
  padding: 1rem 2rem;
}

.ljs-btn--sm {
  font-size: 0.8rem;
  padding: 0.45rem 1rem;
}

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

.ljs-hero--split {
  display: flex;
  flex-wrap: wrap;
  min-height: 85vh;
  min-height: max(540px, 85vh);
  padding-top: var(--hit-header-height);
  background: var(--hit-primary-dark);
  position: relative;
  overflow: hidden;
}

.ljs-hero--split::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(55,0,60,0.8) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.ljs-hero__content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem 5rem;
  position: relative;
  z-index: 2;
}

.ljs-hero__media {
  flex: 1 1 45%;
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

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

.ljs-hero__badge {
  display: inline-block;
  background: rgba(0,255,135,0.15);
  border: 1px solid rgba(0,255,135,0.3);
  color: var(--hit-secondary);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.ljs-hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--hit-text);
  letter-spacing: -0.5px;
}

.ljs-hero__title span {
  color: var(--hit-secondary);
}

.ljs-hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--hit-text-muted);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}

.ljs-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.ljs-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.ljs-hero__stat {
  display: flex;
  flex-direction: column;
}

.ljs-hero__stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hit-accent-alt);
  line-height: 1;
}

.ljs-hero__stat-label {
  font-size: 0.8rem;
  color: var(--hit-text-muted);
  margin-top: 0.25rem;
}

.ljs-section {
  padding: 5rem 0;
}

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

.ljs-section--responsible {
  background: linear-gradient(135deg, var(--hit-primary-dark), rgba(55,0,60,0.3));
  border-top: 1px solid rgba(0,255,135,0.15);
  border-bottom: 1px solid rgba(0,255,135,0.15);
}

.ljs-section--cta {
  background: linear-gradient(135deg, var(--hit-primary), var(--hit-primary-dark));
}

.ljs-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.ljs-section__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--hit-text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.3px;
}

.ljs-section__subtitle {
  font-size: 1.05rem;
  color: var(--hit-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.ljs-card {
  background: var(--hit-surface);
  border: 1px solid var(--hit-border);
  border-radius: var(--hit-radius);
  padding: 1.75rem;
  transition: transform var(--hit-transition), box-shadow var(--hit-transition);
}

.ljs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--hit-shadow);
}

.ljs-two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}

.ljs-two-col--reverse {
  flex-direction: row-reverse;
}

.ljs-two-col__text {
  flex: 1 1 55%;
}

.ljs-two-col__text p {
  color: var(--hit-text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.ljs-two-col__text p:last-child {
  margin-bottom: 0;
}

.ljs-two-col__rules {
  flex: 1 1 35%;
  background: var(--hit-surface);
  border: 1px solid var(--hit-border);
  border-radius: var(--hit-radius);
  padding: 1.75rem;
}

.ljs-two-col__visual {
  flex: 1 1 35%;
}

.ljs-rules__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--hit-secondary);
  margin-bottom: 1.25rem;
}

.ljs-rules__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ljs-rules__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--hit-text-muted);
  font-size: 0.95rem;
}

.ljs-rules__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.ljs-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.ljs-step {
  flex: 1 1 200px;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.ljs-step__number {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0,255,135,0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.ljs-step__icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 1rem;
}

.ljs-step__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--hit-text);
  margin-bottom: 0.75rem;
}

.ljs-step__text {
  font-size: 0.9rem;
  color: var(--hit-text-muted);
  line-height: 1.7;
}

.ljs-steps--3 .ljs-step {
  flex: 1 1 250px;
}

.ljs-jackpots {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.ljs-jackpot {
  flex: 1 1 260px;
  max-width: 340px;
  text-align: center;
  padding: 2rem;
}

.ljs-jackpot__badge {
  display: inline-block;
  background: var(--hit-secondary);
  color: var(--hit-primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ljs-jackpot__date {
  font-size: 0.9rem;
  color: var(--hit-text-muted);
  margin-bottom: 0.75rem;
}

.ljs-jackpot__amount {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--hit-accent-alt);
  margin-bottom: 0.25rem;
  line-height: 1.1;
}

.ljs-jackpot__label {
  font-size: 0.85rem;
  color: var(--hit-text-muted);
  margin-bottom: 1.5rem;
}

.ljs-card--featured {
  border-color: var(--hit-secondary);
  box-shadow: 0 0 30px rgba(0,255,135,0.15);
}

.ljs-results {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.ljs-results__card {
  max-width: 600px;
  width: 100%;
  text-align: center;
  padding: 2.5rem;
}

.ljs-results__draw-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--hit-text);
  margin-bottom: 0.5rem;
}

.ljs-results__date {
  color: var(--hit-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.ljs-results__balls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.ljs-ball {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hit-primary), var(--hit-primary-light));
  border: 2px solid var(--hit-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--hit-text);
  flex-shrink: 0;
}

.ljs-ball--bonus {
  background: linear-gradient(135deg, #4a0050, var(--hit-accent-alt));
  border-color: var(--hit-accent-alt);
  color: var(--hit-primary-dark);
}

.ljs-results__bonus {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ljs-results__bonus-label {
  color: var(--hit-text-muted);
  font-size: 0.9rem;
}

.ljs-results__jackpot {
  font-size: 0.9rem;
  color: var(--hit-accent-alt);
  font-weight: 500;
}

.ljs-why-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.ljs-why-card {
  flex: 1 1 280px;
  padding: 1.75rem;
  text-align: left;
}

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

.ljs-why-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--hit-text);
  margin-bottom: 0.5rem;
}

.ljs-why-card__text {
  font-size: 0.9rem;
  color: var(--hit-text-muted);
  line-height: 1.7;
}

.ljs-why-card--warning {
  border-color: rgba(245,158,11,0.3);
}

.ljs-faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.ljs-faq__item:has(.ljs-faq__question[aria-expanded='true']) {
  border-color: rgba(0,255,135,0.3);
}

.ljs-faq__question {
  width: 100%;
  background: none;
  border: none;
  color: var(--hit-text);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 1.25rem 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--hit-transition);
}

.ljs-faq__question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--hit-secondary);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform var(--hit-transition);
}

.ljs-faq__question[aria-expanded='true']::after {
  transform: rotate(45deg);
}

.ljs-faq__question:hover {
  color: var(--hit-secondary);
}

.ljs-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--hit-transition);
  padding: 0 1.5rem;
}

.ljs-faq__answer.is-open {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

.ljs-faq__answer p {
  color: var(--hit-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.ljs-responsible {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.ljs-responsible__icon {
  font-size: 4rem;
  flex-shrink: 0;
}

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

.ljs-responsible__content p {
  color: var(--hit-text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.ljs-responsible__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.ljs-cta-block {
  text-align: center;
  padding: 2rem 0;
}

.ljs-cta-block__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--hit-text);
  margin-bottom: 1rem;
}

.ljs-cta-block__text {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.ljs-cta-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.ljs-page-hero {
  padding: calc(var(--hit-header-height) + 3rem) 0 3rem;
  background: linear-gradient(135deg, var(--hit-primary-dark), var(--hit-primary));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ljs-page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hit-secondary), var(--hit-accent));
}

.ljs-page-hero--responsible {
  background: linear-gradient(135deg, #1A001D, #37003C);
}

.ljs-page-hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--hit-text);
  margin-bottom: 0.75rem;
}

.ljs-page-hero__subtitle {
  font-size: 1.1rem;
  color: var(--hit-text-muted);
}

.ljs-page-hero__helpline {
  margin-top: 1.5rem;
  display: inline-block;
  background: rgba(0,255,135,0.15);
  border: 1px solid rgba(0,255,135,0.3);
  color: var(--hit-secondary);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
}

.ljs-about-visual {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.ljs-about-stat {
  flex: 1 1 120px;
  background: var(--hit-surface);
  border: 1px solid var(--hit-border);
  border-radius: var(--hit-radius);
  padding: 1.5rem;
  text-align: center;
}

.ljs-about-stat__value {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--hit-secondary);
  display: block;
  margin-bottom: 0.25rem;
}

.ljs-about-stat__label {
  font-size: 0.8rem;
  color: var(--hit-text-muted);
}

.ljs-license-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem;
}

.ljs-license-article__badge {
  display: inline-block;
  background: rgba(0,255,135,0.15);
  border: 1px solid rgba(0,255,135,0.3);
  color: var(--hit-secondary);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.ljs-license-article__content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--hit-text);
  margin-bottom: 1rem;
}

.ljs-license-article__content p {
  color: var(--hit-text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.ljs-license-list {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--hit-text-muted);
  margin-bottom: 1rem;
}

.ljs-license-list li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.ljs-team {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.ljs-team__card {
  flex: 1 1 200px;
  text-align: center;
  padding: 2rem 1.5rem;
}

.ljs-team__avatar {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.ljs-team__name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--hit-text);
  margin-bottom: 0.25rem;
}

.ljs-team__role {
  font-size: 0.85rem;
  color: var(--hit-secondary);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

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

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

.ljs-ticket-main {
  flex: 1 1 55%;
}

.ljs-ticket-aside {
  flex: 0 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: calc(var(--hit-header-height) + 1rem);
}

.ljs-ticket-builder {
  padding: 2rem;
}

.ljs-ticket-builder__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 0.75rem;
}

.ljs-ticket-builder__label {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--hit-text);
}

.ljs-number-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.ljs-number-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--hit-border);
  background: var(--hit-surface-hover);
  color: var(--hit-text);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--hit-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ljs-number-btn:hover {
  border-color: var(--hit-secondary);
  color: var(--hit-secondary);
  transform: scale(1.1);
}

.ljs-number-btn.is-selected {
  background: var(--hit-secondary);
  border-color: var(--hit-secondary);
  color: var(--hit-primary-dark);
  transform: scale(1.05);
}

.ljs-number-btn--bonus.is-selected {
  background: var(--hit-accent-alt);
  border-color: var(--hit-accent-alt);
  color: var(--hit-primary-dark);
}

.ljs-selected-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  min-height: 40px;
}

.ljs-selected-numbers__label {
  font-size: 0.85rem;
  color: var(--hit-text-muted);
  font-weight: 500;
}

.ljs-selected-numbers__balls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.ljs-selected-numbers__placeholder {
  font-size: 0.85rem;
  color: var(--hit-text-muted);
  font-style: italic;
}

.ljs-ticket-builder__bonus {
  border-top: 1px solid var(--hit-border);
  padding-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.ljs-ticket-builder__draws {
  margin-bottom: 1.5rem;
}

.ljs-ticket-builder__disclaimer {
  font-size: 0.78rem;
  color: var(--hit-text-muted);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}

.ljs-aside-card {
  padding: 1.5rem;
}

.ljs-aside-card--warning {
  border-color: rgba(245,158,11,0.3);
  background: rgba(245,158,11,0.05);
}

.ljs-aside-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--hit-text);
  margin-bottom: 0.75rem;
}

.ljs-aside-card__jackpot {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--hit-accent-alt);
  margin-bottom: 0.25rem;
}

.ljs-aside-card__draw {
  font-size: 0.85rem;
  color: var(--hit-text-muted);
}

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

.ljs-prize-table th {
  text-align: left;
  color: var(--hit-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--hit-border);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.ljs-prize-table td {
  padding: 0.45rem 0;
  color: var(--hit-text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.ljs-payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.ljs-payment-badge {
  display: inline-block;
  background: var(--hit-surface-hover);
  border: 1px solid var(--hit-border);
  color: var(--hit-text);
  padding: 0.3rem 0.65rem;
  border-radius: var(--hit-radius-sm);
  font-size: 0.78rem;
  font-weight: 500;
}

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

.ljs-contact-form-wrap {
  flex: 1 1 50%;
}

.ljs-contact-info {
  flex: 1 1 35%;
}

.ljs-contact-form {
  padding: 2rem;
  margin-top: 1.5rem;
}

.ljs-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.ljs-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
}

.ljs-contact-card__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.ljs-contact-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--hit-text);
  margin-bottom: 0.25rem;
}

.ljs-contact-card__text {
  font-size: 0.9rem;
  color: var(--hit-text);
  font-weight: 500;
}

.ljs-contact-card__note {
  font-size: 0.8rem;
  color: var(--hit-text-muted);
  margin-top: 0.15rem;
}

.ljs-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ljs-form__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.ljs-form__row .ljs-form__group {
  flex: 1 1 200px;
}

.ljs-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ljs-form__group--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.ljs-form__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--hit-text);
}

.ljs-form__input {
  background: var(--hit-bg-alt);
  border: 1px solid var(--hit-border);
  border-radius: var(--hit-radius-sm);
  color: var(--hit-text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: border-color var(--hit-transition), box-shadow var(--hit-transition);
  width: 100%;
  -webkit-appearance: none;
}

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

.ljs-form__input::placeholder {
  color: var(--hit-text-muted);
}

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

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

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

.ljs-form__link {
  color: var(--hit-secondary);
  text-decoration: underline;
}

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

.ljs-legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem;
  line-height: 1.8;
}

.ljs-legal-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--hit-secondary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0,255,135,0.15);
}

.ljs-legal-content h2:first-child {
  margin-top: 0;
}

.ljs-legal-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--hit-text);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.ljs-legal-content p {
  color: var(--hit-text-muted);
  margin-bottom: 1rem;
}

.ljs-legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--hit-text-muted);
  margin-bottom: 1rem;
}

.ljs-legal-content ul li {
  margin-bottom: 0.5rem;
}

.ljs-cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.ljs-cookie-table th {
  background: var(--hit-surface-hover);
  color: var(--hit-secondary);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid var(--hit-border);
}

.ljs-cookie-table td {
  padding: 0.65rem 1rem;
  color: var(--hit-text-muted);
  border: 1px solid var(--hit-border);
}

.ljs-help-orgs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.ljs-help-org {
  flex: 1 1 240px;
  padding: 1.75rem;
}

.ljs-help-org__name {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--hit-secondary);
  margin-bottom: 0.5rem;
}

.ljs-help-org__desc {
  font-size: 0.875rem;
  color: var(--hit-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.ljs-rg-callout {
  background: rgba(0,255,135,0.08);
  border: 1px solid rgba(0,255,135,0.25);
  border-radius: var(--hit-radius);
  padding: 1.5rem 2rem;
  margin-top: 2rem;
  text-align: center;
  color: var(--hit-text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.ljs-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--hit-transition);
}

.ljs-modal.is-visible {
  opacity: 1;
  pointer-events: all;
}

.ljs-modal__overlay {
  position: absolute;
  inset: 0;
  background: var(--hit-overlay);
  backdrop-filter: blur(4px);
}

.ljs-modal__box {
  position: relative;
  background: var(--hit-surface);
  border: 1px solid var(--hit-border);
  border-radius: var(--hit-radius-lg);
  padding: 2.5rem;
  max-width: 460px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalZoom 0.3s ease forwards;
  z-index: 1;
}

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

@keyframes modalZoom {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.ljs-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--hit-surface-hover);
  border: 1px solid var(--hit-border);
  color: var(--hit-text);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--hit-transition), color var(--hit-transition);
  line-height: 1;
}

.ljs-modal__close:hover {
  background: var(--hit-primary);
  color: var(--hit-secondary);
}

.ljs-modal__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hit-text);
  margin-bottom: 0.4rem;
}

.ljs-modal__subtitle {
  font-size: 0.9rem;
  color: var(--hit-text-muted);
  margin-bottom: 1.75rem;
}

.ljs-modal__success-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

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

.ljs-modal__switch-btn {
  background: none;
  border: none;
  color: var(--hit-secondary);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: underline;
  padding: 0;
}

.ljs-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: var(--hit-surface);
  border-top: 1px solid var(--hit-border);
  box-shadow: 0 -4px 20px var(--hit-shadow);
}

.ljs-cookie-banner__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
}

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

.ljs-cookie-banner__link {
  color: var(--hit-secondary);
  text-decoration: underline;
}

.ljs-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

.ljs-footer {
  background: var(--hit-primary-dark);
  border-top: 1px solid rgba(0,255,135,0.1);
}

.ljs-footer__top {
  padding: 3rem 0 2rem;
}

.ljs-footer__top-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

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

.ljs-footer__logo-text {
  display: block;
  margin-bottom: 0.75rem;
}

.ljs-footer__brand-desc {
  font-size: 0.875rem;
  color: var(--hit-text-muted);
  line-height: 1.6;
  max-width: 280px;
}

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

.ljs-footer__nav-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--hit-secondary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ljs-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

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

.ljs-footer__logos-section {
  padding: 2rem 0;
  border-top: 1px solid var(--hit-border);
  border-bottom: 1px solid var(--hit-border);
}

.ljs-footer__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.ljs-footer__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
background: #8e8b8b;
  border: 1px solid var(--hit-border);
  border-radius: var(--hit-radius-sm);
  transition: border-color var(--hit-transition);
}

.ljs-footer__logo-link:hover {
  border-color: var(--hit-secondary);
}

.ljs-footer__logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  max-width: 100px;
  filter: brightness(0.85) grayscale(0.2);
  transition: filter var(--hit-transition);
}

.ljs-footer__logo-link:hover .ljs-footer__logo-img {
  filter: brightness(1) grayscale(0);
}

.ljs-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.ljs-footer__badge-link {
  display: flex;
  align-items: center;
}

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

.ljs-footer__compliance {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--hit-border);
}

.ljs-footer__compliance p {
  font-size: 0.78rem;
  color: var(--hit-text-muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
  text-align: center;
}

.ljs-footer__bottom {
  padding: 1.25rem 0;
}

.ljs-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ljs-footer__copyright {
  font-size: 0.8rem;
  color: var(--hit-text-muted);
}

.ljs-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

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

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

@media (max-width: 1024px) {
  .ljs-hero__content {
    padding: 3rem 2rem 3rem 3rem;
  }
}

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

  .ljs-header__nav-list {
    position: fixed;
    top: var(--hit-header-height);
    left: 0;
    right: 0;
    background: var(--hit-primary-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0.5rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-bottom: 1px solid var(--hit-border);
    z-index: 999;
  }

  .ljs-header__nav-list.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .ljs-header__nav-link {
    padding: 0.75rem 1rem;
    border-radius: var(--hit-radius-sm);
  }

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

  .ljs-hero--split {
    flex-direction: column;
    min-height: auto;
  }

  .ljs-hero__content {
    flex: none;
    width: 100%;
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .ljs-hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .ljs-hero__media {
    flex: none;
    width: 100%;
    min-height: 280px;
    order: -1;
  }

  .ljs-hero__badge {
    margin-left: auto;
    margin-right: auto;
  }

  .ljs-two-col {
    flex-direction: column;
  }

  .ljs-two-col--reverse {
    flex-direction: column;
  }

  .ljs-two-col__text,
  .ljs-two-col__rules,
  .ljs-two-col__visual {
    flex: none;
    width: 100%;
  }

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

  .ljs-ticket-aside {
    position: static;
    width: 100%;
    flex: none;
  }

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

  .ljs-contact-form-wrap,
  .ljs-contact-info {
    flex: none;
    width: 100%;
  }

  .ljs-legal-content {
    padding: 1.5rem;
  }

  .ljs-modal__box {
    padding: 1.75rem 1.25rem;
  }

  .ljs-footer__top-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .ljs-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .ljs-section {
    padding: 3rem 0;
  }

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

  .ljs-ball {
    width: 38px;
    height: 38px;
    font-size: 0.8rem;
  }

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