
:root {
  --color-bg-dark: #0a192f;      
  --color-bg-light: #112240;     
  --color-accent-red: #e31c23;   
  --color-accent-gold: #e0aa3e;  
  --color-text-main: #ffffff;
  --color-text-muted: #8892b0;
  --color-border: #233554;
  --font-main: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --max-width: 1280px;
  --header-height: 70px;
  --radius: 8px;
  --shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
}

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

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

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }


.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 60px 0; }
.section__title {
  font-size: 2rem;
  color: var(--color-accent-gold);
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  text-align: center;
  border: none;
  transition: all 0.2s ease;
}

.btn--primary {
  background-color: var(--color-accent-red);
  color: white;
}
.btn--primary:hover { background-color: #b9151b; }

.btn--secondary {
  background-color: transparent;
  border: 1px solid var(--color-accent-gold);
  color: var(--color-accent-gold);
}
.btn--secondary:hover { background-color: rgba(224, 170, 62, 0.1); }


.header {
  height: var(--header-height);
  background-color: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo span {
  font-size: 0.75rem;
  color: var(--color-accent-gold);
  font-weight: 400;
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 20px; }
.nav__list { display: flex; gap: 25px; }
.nav__link { font-weight: 500; font-size: 0.95rem; }
.nav__link:hover { color: var(--color-accent-gold); }

.header__actions { display: none; align-items: center; gap: 15px; }
.cart-badge {
  background: var(--color-bg-light);
  border: 1px solid var(--color-accent-gold);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--color-accent-gold);
}

.mobile-toggle { display: none; font-size: 1.5rem; color: white; background: none; border: none; }


.hero {
  
  background: 
    linear-gradient(135deg, rgba(10, 25, 47, 0.9) 0%, rgba(28, 46, 74, 0.8) 100%),
    url('../img/hero.png') center center / cover no-repeat;

  padding: 80px 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative; 
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
}
.hero__content p { font-size: 1.1rem; color: var(--color-text-muted); margin-bottom: 30px; }

.hero__card {
  background-color: var(--color-bg-light);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  text-align: center;
}

.hero__card-title { font-size: 1.2rem; color: var(--color-text-muted); margin-bottom: 10px; }
.hero__prize { font-size: 2.5rem; font-weight: 800; color: var(--color-accent-gold); margin-bottom: 15px; }
.countdown {
  font-size: 1.5rem;
  font-family: monospace;
  background: rgba(0,0,0,0.3);
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 20px;
  display: inline-block;
}

.ticket-control {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.ticket-price { display: block; margin-bottom: 10px; color: white; }
.stepper-btn {
  width: 40px; height: 40px;
  background: var(--color-border);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1.2rem;
}
#ticket-qty {
  width: 60px; height: 40px;
  background: transparent;
  border: 1px solid var(--color-border);
  color: white;
  text-align: center;
  font-size: 1.1rem;
}

.hero__disclaimer { font-size: 0.75rem; color: var(--color-text-muted); margin-top: 15px; }


.table-wrapper { overflow-x: auto; }
.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg-light);
  border-radius: var(--radius);
  overflow: hidden;
}
.table th, .table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.table th { background: #0f1c30; color: var(--color-accent-gold); text-transform: uppercase; font-size: 0.85rem; }
.table tr:last-child td { border-bottom: none; }
.table tr:hover { background-color: rgba(255,255,255,0.02); }


.accordion__item {
  background: var(--color-bg-light);
  margin-bottom: 10px;
  border-radius: var(--radius);
  overflow: hidden;
}
.accordion__btn {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  color: white;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}
.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}
.accordion__content p { padding-bottom: 20px; color: var(--color-text-muted); }
.accordion__icon { transition: transform 0.3s; }
.accordion__item.active .accordion__icon { transform: rotate(180deg); }
.accordion__item.active .accordion__content { max-height: 200px; }


.rp-strip {
  background: #1a0505; 
  border-top: 2px solid var(--color-accent-red);
  padding: 15px 0;
  text-align: center;
}
.rp-content { display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; }
.age-badge { background: white; color: black; font-weight: bold; padding: 2px 6px; border-radius: 3px; }
 

.overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0; pointer-events: none; transition: 0.3s;
}
.overlay.active { opacity: 1; pointer-events: all; }

.modal {
  background: white;
  color: #0a192f;
  padding: 40px;
  border-radius: var(--radius);
  max-width: 500px;
  text-align: center;
}
.modal h2 { margin-bottom: 15px; color: var(--color-accent-red); }

.cookie-banner {
  position: fixed; bottom: 0; left: 0; width: 100%;
  background: var(--color-bg-light);
  border-top: 1px solid var(--color-accent-gold);
  padding: 20px;
  z-index: 9000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.cookie-banner.active { transform: translateY(0); }


@media (max-width: 768px) {
  .hero__grid { grid-template-columns: 1fr; }
  .nav { position: fixed; top: 70px; right: -100%; width: 250px; height: calc(100vh - 70px); background: var(--color-bg-light); flex-direction: column; padding: 20px; transition: 0.3s; box-shadow: -5px 0 15px rgba(0,0,0,0.5); }
  .nav.active { right: 0; }
  .nav__list { flex-direction: column; width: 100%; }
  .mobile-toggle { display: block; }
  .hero__content h1 { font-size: 2.5rem; }
}.ln-footer {
     background-color: #081636;
     color: #f9fafb;
     padding: 40px 16px 32px;
     font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
     font-size: 14px;
     line-height: 1.6;
 }

 .ln-footer-inner {
     max-width: 1200px;
     margin: 0 auto;
     text-align: center;
 }

 .ln-footer-logos {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     align-items: center;
     gap: 32px;
     margin-bottom: 40px;
 }

 .ln-footer-logos a {
     display: inline-flex;
     align-items: center;
     justify-content: center;
 }

 .ln-footer-logo {
     height: 50px;
     width: auto;
     display: block;
 }

 .ln-footer-text {
     margin-bottom: 8px;
     color: #e5e7eb;
 }

 .ln-footer-text a {
     color: #ffffff;
     text-decoration: underline;
 }

 .ln-footer-warning {
     margin: 22px 0 26px;
     font-weight: 600;
     color: #ff3737;
 }

 .ln-footer-bottom {
     border-top: 1px solid rgba(148, 163, 184, 0.4);
     padding-top: 14px;
     display: flex;
     flex-direction: column;
     gap: 8px;
     align-items: center;
     justify-content: space-between;
     font-size: 13px;
 }

 .ln-footer-copy span {
     font-weight: 600;
 }

 .ln-footer-links {
     display: flex;
     gap: 24px;
 }

 .ln-footer-links a {
     color: #e5e7eb;
     text-decoration: none;
 }

 .ln-footer-links a:hover {
     text-decoration: underline;
 }

 @media (min-width: 768px) {
     .ln-footer {
         padding: 48px 24px 32px;
     }

     .ln-footer-bottom {
         flex-direction: row;
     }
 }.result-card {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 50px;
  text-align: center;
  box-shadow: var(--shadow);
}

.result-card__header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.result-card__date {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-top: 5px;
}


.balls-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.ball {
  width: 50px;
  height: 50px;
  background: white;
  color: var(--color-bg-dark);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.ball.bonus {
  background: var(--color-accent-gold);
  color: #000;
}


.breakdown-table {
  width: 100%;
  margin-top: 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.breakdown-table th {
  background: rgba(0,0,0,0.2);
  color: var(--color-text-muted);
  font-size: 0.85rem;
  padding: 12px 20px;
  text-align: right;
}
.breakdown-table th:first-child { text-align: left; }

.breakdown-table td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--color-border);
  text-align: right;
  font-size: 0.95rem;
}
.breakdown-table td:first-child { text-align: left; color: white; font-weight: 500; }


.claim-info {
  background: rgba(227, 28, 35, 0.1); 
  border-left: 4px solid var(--color-accent-red);
  padding: 30px;
  margin-top: 50px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.auth-section {
  min-height: calc(100vh - var(--header-height) - 300px); 
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-card {
  background: var(--color-bg-light);
  padding: 40px;
  border-radius: var(--radius);
  width: 100%;
  max-width: 450px;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}

.auth-card h1 {
  text-align: center;
  margin-bottom: 30px;
  color: white;
  font-size: 2rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  background-color: var(--color-bg-dark); 
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: white;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-accent-gold);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.form-link {
  color: var(--color-accent-gold);
  text-decoration: none;
}
.form-link:hover { text-decoration: underline; }

.auth-footer {
  margin-top: 25px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}
.legal-content {
  background: var(--color-bg-light);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  color: #c0c5d0; 
}

.legal-content h2 {
  color: var(--color-accent-gold);
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 10px;
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.legal-content ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.legal-content li { margin-bottom: 8px; }