:root {
  --primary: #0f172a;
  --secondary: #1e293b;
  --accent: #06b6d4;
  --accent-hover: #0891b2;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --danger: #ef4444;
  --success: #22c55e;
  --border: #334155;
  --radius: 8px;
  --spacing: 1rem;
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--primary);
  color: var(--text-main);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

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

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 1rem;
}

.btn:hover {
  background-color: var(--accent-hover);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background-color: var(--accent);
  color: #fff;
}

header {
  background-color: var(--secondary);
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo i {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a:hover {
  color: var(--accent);
}

.burger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

main {
  flex: 1;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero {
  text-align: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
  background: url('../img/hero.png') center center/cover no-repeat;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
}

.timer-box {
  background-color: var(--secondary);
  display: inline-block;
  padding: 20px 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.timer-display {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  font-family: monospace;
}

.product-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.card {
  background-color: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}

.product-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.jackpot {
  color: var(--success);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.price-control {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
}

.qty-btn {
  background: var(--border);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.2rem;
}

.qty-input {
  width: 60px;
  height: 40px;
  text-align: center;
  background: var(--primary);
  border: 1px solid var(--border);
  color: white;
  border-radius: var(--radius);
  font-size: 1.1rem;
}

.cart-summary h3 {
  border-bottom: 1px solid var(--border);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
}

.info-section {
  margin-bottom: 40px;
}

.info-section h2 {
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.info-section h3 {
  margin-bottom: 15px;
  margin-top: 25px;
}

.info-section p {
  color: var(--text-muted);
  margin-bottom: 15px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.data-table th,
.data-table td {
  text-align: left;
  padding: 15px;
  border-bottom: 1px solid var(--border);
}

.data-table th {
  color: var(--accent);
}

.ball {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: var(--text-main);
  color: var(--primary);
  border-radius: 50%;
  font-weight: 700;
  margin-right: 5px;
}

.ball.bonus {
  background-color: var(--accent);
  color: white;
}

.auth-card {
  max-width: 400px;
  margin: 40px auto;
  text-align: center;
}

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

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

.form-control {
  width: 100%;
  padding: 12px;
  background-color: var(--primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: white;
  font-size: 1rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  font-size: 0.9rem;
  color: var(--text-muted);
}



.compliance-icons {
  display: flex;
  gap: 15px;
}

.comp-icon {
  border: 1px solid var(--text-muted);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: var(--secondary);
  padding: 40px;
  border-radius: var(--radius);
  max-width: 500px;
  width: 90%;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.age-gate-content {
  text-align: center;
}

.age-gate-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--secondary);
  border-top: 1px solid var(--accent);
  padding: 20px;
  z-index: 1500;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-settings-panel {
  text-align: left;
  margin-top: 20px;
}

.setting-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border);
  transition: .4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked+.slider {
  background-color: var(--accent);
}

input:disabled+.slider {
  background-color: var(--border);
  opacity: 0.5;
}

input:checked+.slider:before {
  transform: translateX(26px);
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--secondary);
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .burger {
    display: block;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

.ln-footer {
  background-color: #090f1b;
  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;
  }
}

.hero-small {
  text-align: center;
  margin-bottom: 50px;
  padding: 20px 0;
}

.hero-small h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-small p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.step-card {
  background: var(--secondary);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.step-icon {
  width: 70px;
  height: 70px;
  background: rgba(6, 182, 212, 0.1);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.step-card h3 {
  margin-bottom: 15px;
  color: var(--text-main);
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.modes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.mode-card {
  background: var(--secondary);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.mode-card.highlight {
  border-color: var(--accent);
  background: linear-gradient(145deg, var(--secondary), rgba(6, 182, 212, 0.05));
}

.mode-card h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-main);
}

.check-list {
  margin-top: 20px;
}

.check-list li {
  margin-bottom: 10px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list li i {
  color: var(--success);
}

.prize-table th {
  background-color: rgba(255, 255, 255, 0.03);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.match-badge {
  background: var(--primary);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--border);
  font-family: monospace;
  font-weight: 700;
  color: var(--accent);
}

.cta-box {
  text-align: center;
  background: linear-gradient(to right, var(--secondary), var(--primary));
  padding: 60px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  margin: 60px 0;
}

.cta-box h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-box p {
  margin-bottom: 30px;
  color: var(--text-muted);
}

.btn-large {
  padding: 15px 40px;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .modes-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 40px 20px;
  }
}