:root {
  --lot-primary: #334155;
  --lot-primary-dark: #1E293B;
  --lot-primary-light: #475569;
  --lot-secondary: #64748B;
  --lot-secondary-dark: #475569;
  --lot-accent: #0EA5E9;
  --lot-accent-alt: #F59E0B;
  --lot-background: #0A0E1A;
  --lot-background-alt: #111827;
  --lot-surface: #1F2937;
  --lot-surface-hover: #374151;
  --lot-text: #F9FAFB;
  --lot-text-muted: #9CA3AF;
  --lot-text-on-primary: #FFFFFF;
  --lot-border: rgba(255,255,255,0.08);
  --lot-shadow: rgba(0,0,0,0.6);
  --lot-overlay: rgba(10,14,26,0.9);
  --lot-success: #22C55E;
  --lot-warning: #F59E0B;
  --lot-error: #EF4444;
  --lot-info: #3B82F6;
  --lot-radius: 12px;
  --lot-radius-sm: 8px;
  --lot-radius-lg: 20px;
  --lot-transition: 0.3s ease;
  --lot-font-primary: 'Poppins', sans-serif;
  --lot-font-secondary: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--lot-font-secondary);
  background-color: var(--lot-background);
  color: var(--lot-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--lot-accent);
  text-decoration: none;
  transition: color var(--lot-transition);
}

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

ul {
  list-style: none;
}

.ljs-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.ljs-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--lot-transition), box-shadow var(--lot-transition);
  border-bottom: 1px solid transparent;
}

.ljs-header.is-scrolled {
  background: rgba(10, 14, 26, 0.97);
  box-shadow: 0 2px 24px var(--lot-shadow);
  border-bottom-color: var(--lot-border);
}

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

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

.ljs-header__logo-text {
  font-family: var(--lot-font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lot-accent);
  letter-spacing: -0.5px;
}

.ljs-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--lot-radius-sm);
}

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

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

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

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

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

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

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

.ljs-header__nav-link:hover,
.ljs-header__nav-link.is-active {
  color: var(--lot-accent);
  background: rgba(14, 165, 233, 0.1);
}

.ljs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lot-font-primary);
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: var(--lot-radius-sm);
  transition: all var(--lot-transition);
  text-decoration: none;
  white-space: nowrap;
  padding: 10px 20px;
  font-size: 0.95rem;
}

.ljs-btn--primary {
  background: linear-gradient(135deg, var(--lot-accent), #0284C7);
  color: #ffffff;
}

.ljs-btn--primary:hover {
  background: linear-gradient(135deg, #0284C7, var(--lot-accent));
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.4);
  color: #ffffff;
}

.ljs-btn--accent {
  background: linear-gradient(135deg, var(--lot-accent-alt), #D97706);
  color: #000000;
}

.ljs-btn--accent:hover {
  background: linear-gradient(135deg, #D97706, var(--lot-accent-alt));
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
  color: #000000;
}

.ljs-btn--ghost {
  background: transparent;
  color: var(--lot-text);
  border: 1px solid var(--lot-border);
}

.ljs-btn--ghost:hover {
  border-color: var(--lot-accent);
  color: var(--lot-accent);
  background: rgba(14, 165, 233, 0.08);
}

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

.ljs-btn--lg {
  padding: 14px 32px;
  font-size: 1.05rem;
  border-radius: var(--lot-radius);
}

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

.ljs-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 75vh;
  min-height: 480px;
  overflow: hidden;
}

.ljs-hero--gradient {
  background: linear-gradient(135deg, #0A0E1A 0%, #1E293B 40%, #0F2027 70%, #0A0E1A 100%);
}

.ljs-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.ljs-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 72px;
  animation: slideUp 0.7s ease both;
}

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

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.ljs-hero__title {
  font-family: var(--lot-font-primary);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--lot-text);
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.ljs-hero__title span {
  color: var(--lot-accent);
}

.ljs-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--lot-text-muted);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.ljs-hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.ljs-hero__jackpot-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--lot-border);
  border-radius: var(--lot-radius-lg);
  padding: 20px 40px;
  backdrop-filter: blur(8px);
}

.ljs-hero__jackpot-label {
  font-size: 0.8rem;
  color: var(--lot-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.ljs-hero__jackpot-date {
  font-size: 0.95rem;
  color: var(--lot-text-muted);
  margin-bottom: 8px;
}

.ljs-hero__jackpot-amount {
  font-family: var(--lot-font-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--lot-accent-alt);
  text-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

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

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

.ljs-section--stats {
  padding: 48px 0;
  background: var(--lot-surface);
}

.ljs-section__title {
  font-family: var(--lot-font-primary);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--lot-text);
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.ljs-section__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--lot-accent), var(--lot-accent-alt));
  margin: 12px auto 0;
  border-radius: 2px;
}

.ljs-section__cta {
  text-align: center;
  margin-top: 40px;
}

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

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

.ljs-section--stats .ljs-stat-card {
  background: var(--lot-background-alt);
}

.ljs-stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--lot-accent);
}

.ljs-stat-card__number {
  display: block;
  font-family: var(--lot-font-primary);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--lot-accent);
  margin-bottom: 6px;
}

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

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

.ljs-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.ljs-lotto-desc {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.ljs-lotto-desc__text {
  flex: 1 1 300px;
}

.ljs-lotto-desc__text p {
  color: var(--lot-text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.ljs-lotto-desc__rules {
  flex: 0 0 300px;
  background: var(--lot-surface);
  border: 1px solid var(--lot-border);
  border-radius: var(--lot-radius);
  padding: 28px;
}

.ljs-lotto-desc__rules-title {
  font-family: var(--lot-font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lot-text);
  margin-bottom: 16px;
}

.ljs-rules-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ljs-rules-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--lot-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.ljs-rules-list__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.ljs-steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.ljs-step-card {
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ljs-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lot-accent), var(--lot-accent-alt));
}

.ljs-step-card__number {
  font-family: var(--lot-font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(14, 165, 233, 0.2);
  line-height: 1;
  margin-bottom: 12px;
}

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

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

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

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

.ljs-jackpot-card {
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 340px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ljs-jackpot-card__date {
  font-size: 0.9rem;
  color: var(--lot-text-muted);
}

.ljs-jackpot-card__amount {
  font-family: var(--lot-font-primary);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--lot-accent-alt);
}

.ljs-jackpot-card__label {
  font-size: 0.85rem;
  color: var(--lot-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.ljs-results-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.ljs-results-table th,
.ljs-results-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--lot-border);
  font-size: 0.9rem;
}

.ljs-results-table th {
  background: var(--lot-surface);
  color: var(--lot-text-muted);
  font-family: var(--lot-font-primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.ljs-results-table td {
  color: var(--lot-text);
  background: var(--lot-background-alt);
}

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

.ljs-ball {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lot-accent), #0284C7);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  margin: 2px;
}

.ljs-ball--extra {
  background: linear-gradient(135deg, var(--lot-accent-alt), #D97706);
  color: #000000;
}

.ljs-responsible-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  background: var(--lot-surface);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: var(--lot-radius);
  padding: 40px;
}

.ljs-responsible__text {
  flex: 1 1 300px;
}

.ljs-responsible__text p {
  color: var(--lot-text-muted);
  margin-bottom: 14px;
  line-height: 1.8;
}

.ljs-responsible__age {
  font-size: 1.1rem;
  color: var(--lot-text) !important;
  font-weight: 600;
}

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

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

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

.ljs-faq-item__question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--lot-text);
  font-family: var(--lot-font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--lot-transition);
}

.ljs-faq-item__question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--lot-accent);
  transition: transform var(--lot-transition);
  flex-shrink: 0;
}

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

.ljs-faq-item__question:hover {
  color: var(--lot-accent);
}

.ljs-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--lot-transition);
}

.ljs-faq-item__answer.is-open {
  max-height: 400px;
}

.ljs-faq-item__answer p {
  padding: 0 24px 20px;
  color: var(--lot-text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

.ljs-page-hero {
  padding: 120px 0 64px;
  background: linear-gradient(135deg, var(--lot-primary-dark) 0%, var(--lot-background) 100%);
  text-align: center;
  border-bottom: 1px solid var(--lot-border);
}

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

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

.ljs-values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.ljs-value-card {
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
}

.ljs-value-card__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.ljs-value-card__title {
  font-family: var(--lot-font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lot-text);
  margin-bottom: 10px;
}

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

.ljs-about-article {
  max-width: 800px;
  margin: 0 auto;
}

.ljs-about-article p {
  color: var(--lot-text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 1rem;
}

.ljs-license-box {
  background: var(--lot-surface);
  border: 1px solid var(--lot-border);
  border-radius: var(--lot-radius);
  padding: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.ljs-license-box p {
  color: var(--lot-text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.ljs-license-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

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

.ljs-ticket-main {
  flex: 1 1 500px;
  min-width: 300px;
}

.ljs-ticket-info-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--lot-surface);
  border: 1px solid var(--lot-border);
  border-radius: var(--lot-radius-sm);
  padding: 14px 20px;
  margin-bottom: 28px;
  font-size: 0.9rem;
  color: var(--lot-text-muted);
}

.ljs-ticket-info-bar strong {
  color: var(--lot-accent);
}

.ljs-ticket-form-wrap {
  background: var(--lot-surface);
  border: 1px solid var(--lot-border);
  border-radius: var(--lot-radius);
  padding: 32px;
}

.ljs-number-picker {
  margin-bottom: 32px;
}

.ljs-number-picker--extra .ljs-number-picker__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ljs-number-picker__title {
  font-family: var(--lot-font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lot-text);
  margin-bottom: 16px;
}

.ljs-number-picker__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.ljs-num-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--lot-border);
  background: var(--lot-background-alt);
  color: var(--lot-text);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--lot-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ljs-num-btn:hover {
  border-color: var(--lot-accent);
  background: rgba(14, 165, 233, 0.1);
  color: var(--lot-accent);
}

.ljs-num-btn.is-selected {
  background: linear-gradient(135deg, var(--lot-accent), #0284C7);
  border-color: var(--lot-accent);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.4);
}

.ljs-num-btn.is-selected.extra-selected {
  background: linear-gradient(135deg, var(--lot-accent-alt), #D97706);
  border-color: var(--lot-accent-alt);
  color: #000000;
}

.ljs-number-picker__counter {
  font-size: 0.85rem;
  color: var(--lot-text-muted);
}

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

.ljs-ticket-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--lot-border);
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--lot-text-muted);
}

.ljs-ticket-total__amount {
  font-family: var(--lot-font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--lot-accent-alt);
}

.ljs-ticket-form-note {
  font-size: 0.85rem;
  color: var(--lot-text-muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}

.ljs-ticket-aside {
  flex: 0 0 280px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ljs-aside-card {
  padding: 20px;
}

.ljs-aside-card__title {
  font-family: var(--lot-font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--lot-text);
  margin-bottom: 14px;
}

.ljs-aside-card__list {
  list-style: decimal;
  padding-left: 20px;
  color: var(--lot-text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.ljs-aside-card--jackpot {
  border-color: rgba(245, 158, 11, 0.3);
  text-align: center;
}

.ljs-aside-card__amount {
  font-family: var(--lot-font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lot-accent-alt);
  margin-bottom: 4px;
}

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

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

.ljs-prize-table th,
.ljs-prize-table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--lot-border);
  text-align: left;
}

.ljs-prize-table th {
  color: var(--lot-text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.ljs-prize-table td {
  color: var(--lot-text);
}

.ljs-aside-card--responsible {
  border-color: rgba(245, 158, 11, 0.2);
}

.ljs-aside-card__responsible {
  font-size: 0.85rem;
  color: var(--lot-text-muted);
  line-height: 1.7;
}

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

.ljs-contact-form-wrap {
  flex: 1 1 400px;
  min-width: 300px;
}

.ljs-contact-info {
  flex: 0 0 280px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ljs-contact-card {
  padding: 24px;
}

.ljs-contact-card__title {
  font-family: var(--lot-font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--lot-text);
  margin-bottom: 14px;
}

.ljs-contact-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ljs-contact-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--lot-text-muted);
}

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

.ljs-contact-card--helpline {
  border-color: rgba(14, 165, 233, 0.3);
}

.ljs-contact-card__helpline {
  font-family: var(--lot-font-primary);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--lot-accent);
  margin-bottom: 6px;
}

.ljs-contact-card__helpline-note {
  font-size: 0.85rem;
  color: var(--lot-text-muted);
  margin-bottom: 14px;
}

.ljs-legal-container {
  max-width: 800px;
}

.ljs-legal-article h2 {
  font-family: var(--lot-font-primary);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--lot-text);
  margin: 32px 0 12px;
}

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

.ljs-legal-article p {
  color: var(--lot-text-muted);
  margin-bottom: 12px;
  line-height: 1.8;
  font-size: 0.95rem;
}

.ljs-legal-article ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}

.ljs-legal-article ul li {
  color: var(--lot-text-muted);
  margin-bottom: 6px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.ljs-helpline-box {
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: var(--lot-radius);
  padding: 20px 24px;
  margin: 16px 0;
}

.ljs-helpline-box p {
  color: var(--lot-text) !important;
}

.ljs-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.ljs-form__group--check input {
  flex-shrink: 0;
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--lot-accent);
}

.ljs-form__group--check label {
  font-size: 0.9rem;
  color: var(--lot-text-muted);
  line-height: 1.5;
}

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

.ljs-form__input {
  background: var(--lot-background);
  border: 1px solid var(--lot-border);
  border-radius: var(--lot-radius-sm);
  color: var(--lot-text);
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: var(--lot-font-secondary);
  transition: border-color var(--lot-transition);
  width: 100%;
}

.ljs-form__input:focus {
  outline: none;
  border-color: var(--lot-accent);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

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

.ljs-form__select {
  appearance: none;
  cursor: pointer;
}

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

.ljs-form__switch {
  text-align: center;
  font-size: 0.9rem;
  color: var(--lot-text-muted);
}

.ljs-form__switch-btn {
  background: none;
  border: none;
  color: var(--lot-accent);
  cursor: pointer;
  font-size: inherit;
  font-weight: 600;
  padding: 0;
  text-decoration: underline;
}

.ljs-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--lot-transition), visibility var(--lot-transition);
}

.ljs-modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.ljs-modal__backdrop {
  position: absolute;
  inset: 0;
  background: var(--lot-overlay);
  cursor: pointer;
}

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

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

.ljs-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--lot-text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--lot-transition), color var(--lot-transition);
}

.ljs-modal__close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--lot-text);
}

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

.ljs-modal__success-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--lot-success), #16A34A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  margin: 0 auto 20px;
}

.ljs-modal__success-text {
  color: var(--lot-text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.ljs-footer {
  background: var(--lot-background-alt);
  border-top: 1px solid var(--lot-border);
  padding: 60px 0 32px;
}

.ljs-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.ljs-footer__brand {
  flex: 0 0 auto;
}

.ljs-footer__logo-text {
  font-family: var(--lot-font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--lot-accent);
  display: block;
  margin-bottom: 8px;
}

.ljs-footer__tagline {
  font-size: 0.85rem;
  color: var(--lot-text-muted);
}

.ljs-footer__nav {
  flex: 1 1 auto;
}

.ljs-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: flex-end;
}

.ljs-footer__link {
  font-size: 0.85rem;
  color: var(--lot-text-muted);
  transition: color var(--lot-transition);
}

.ljs-footer__link:hover {
  color: var(--lot-accent);
}

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

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

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

.ljs-footer__logo-img {
  height: 32px;
  max-width: 100px;
  object-fit: contain;
}

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

.ljs-footer__badge-link {
  display: flex;
  align-items: center;
  opacity: 0.7;
  transition: opacity var(--lot-transition);
}

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

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

.ljs-footer__compliance {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid var(--lot-border);
  margin-bottom: 20px;
}

.ljs-footer__compliance p {
  font-size: 0.78rem;
  color: var(--lot-text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}

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

.ljs-footer__bottom p {
  font-size: 0.8rem;
  color: var(--lot-text-muted);
}

.ljs-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: var(--lot-surface);
  border-top: 1px solid var(--lot-border);
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  box-shadow: 0 -4px 24px var(--lot-shadow);
  transform: translateY(100%);
  transition: transform var(--lot-transition);
}

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

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

.ljs-cookie-banner__link {
  color: var(--lot-accent);
}

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

.ljs-back-to-top {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lot-accent);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--lot-transition);
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.4);
}

.ljs-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.ljs-back-to-top:hover {
  background: #0284C7;
  transform: translateY(-2px);
}

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

  .ljs-header__nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.98);
    border-bottom: 1px solid var(--lot-border);
    padding: 20px 24px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--lot-transition);
    z-index: 999;
  }

  .ljs-header__nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .ljs-header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .ljs-header__nav-link {
    display: block;
    padding: 10px 12px;
  }

  .ljs-hero__content {
    padding: 20px 0;
  }

  .ljs-hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .ljs-steps-grid,
  .ljs-jackpot-grid,
  .ljs-values-grid {
    flex-direction: column;
    align-items: center;
  }

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

  .ljs-lotto-desc {
    flex-direction: column;
  }

  .ljs-lotto-desc__rules {
    flex: 0 0 auto;
    width: 100%;
  }

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

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

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

  .ljs-contact-info {
    flex: 0 0 auto;
    width: 100%;
  }

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

  .ljs-footer__links {
    justify-content: flex-start;
  }

  .ljs-responsible-wrap {
    flex-direction: column;
    gap: 24px;
    padding: 24px 20px;
  }

  .ljs-responsible__text {
    flex: 0 0 auto;
  }

  .ljs-responsible__text p {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

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

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

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

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

  .ljs-stats-grid {
    gap: 16px;
  }

  .ljs-stat-card {
    flex: 1 1 140px;
    min-width: 130px;
    padding: 18px 20px;
  }
}

@media (max-width: 480px) {
  .ljs-responsible-wrap {
    padding: 20px 16px;
    gap: 20px;
  }

  .ljs-responsible__text p {
    font-size: 0.9rem;
  }

  .ljs-hero {
    height: auto;
    min-height: 480px;
    padding: 100px 0 40px;
  }

  .ljs-hero__jackpot-badge {
    padding: 16px 24px;
  }

  .ljs-num-btn {
    width: 34px;
    height: 34px;
    font-size: 0.75rem;
  }

  .ljs-ticket-form-wrap {
    padding: 20px 16px;
  }

  .ljs-footer__logos {
    gap: 12px;
  }

  .ljs-footer__logo-img {
    height: 24px;
    max-width: 80px;
  }
}