:root {
  --bg-main: #020617;
  --bg-card: #0f172a;
  --bg-card-hover: #1e293b;
  --accent-blue: #0ea5e9;
  --accent-hover: #0284c7;
  --accent-yellow: #facc15;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --border: #1e293b;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--accent-blue);
  transition: color 0.2s;
}

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

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}


header {
  background-color: var(--bg-main);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
  backdrop-filter: blur(10px);
  background-color: rgba(2, 6, 23, 0.9);
}

.header-inner {
  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;
}

.age-badge {
  font-size: 0.75rem;
  color: var(--accent-yellow);
  border: 1px solid var(--accent-yellow);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: normal;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  color: var(--text-main);
  font-weight: 500;
}

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

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-main);
}


.hero {
  background: linear-gradient(135deg, var(--bg-main) 0%, #1e293b 100%);
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.countdown {
  font-family: monospace;
  font-size: 1.5rem;
  color: var(--accent-yellow);
  background: rgba(15, 23, 42, 0.8);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  display: inline-block;
  border: 1px solid var(--border);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  transition: all 0.2s;
}

.btn-primary {
  background-color: var(--accent-blue);
  color: white;
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.5);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--accent-blue);
  color: var(--accent-blue);
}

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


.section {
  padding: 5rem 0;
}

.section h2 {
  font-size: 2.25rem;
  margin-bottom: 2.5rem;
  text-align: center;
  color: var(--text-main);
}

.card {
  background-color: var(--bg-card);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform 0.2s, border-color 0.2s;
}

.card:hover {
  border-color: var(--accent-blue);
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent-blue);
}

.feature-item h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

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

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}


.ticket-builder {
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.step-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--accent-yellow);
  margin-bottom: 0.5rem;
  display: block;
  font-weight: 700;
}

.form-group {
  margin-bottom: 2rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  background-color: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-main);
  font-size: 1.1rem;
  transition: border-color 0.2s;
}

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

.price-summary {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: right;
  margin-bottom: 2rem;
  color: var(--accent-yellow);
  background: rgba(250, 204, 21, 0.1);
  padding: 1rem;
  border-radius: 8px;
}


.table-responsive {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 1.25rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background-color: var(--bg-card-hover);
}

.responsible-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.responsible-text h3 {
  color: var(--accent-yellow);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.responsible-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}


@media (max-width: 768px) {
  .hero-inner {
    padding: 0 1rem;
  }

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

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

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-card);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

@media (min-width: 769px) {
  .hero-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .hero-text p {
    margin-left: 0;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    background: transparent;
    padding: 0;
    width: auto;
  }
}




.rank-icon {
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.rank-1 {
  color: #fbbf24;
  font-weight: bold;
}


.rank-2 {
  color: #94a3b8;
  font-weight: bold;
}


.rank-3 {
  color: #b45309;
  font-weight: bold;
}




.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(15, 23, 42, 0.5) 100%);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-blue);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.claim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

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

.footer-imgs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer-imgs img {
  padding: 12px;
  margin: 12px;
  height: 55px;
  background: white;
  border-radius: 10px;
}

.checkout-container {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .checkout-container {
    grid-template-columns: 1.5fr 1fr;
    align-items: start;
  }
}

.checkout-form-section h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  color: var(--accent-blue);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.payment-method {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.payment-option {
  flex: 1;
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--bg-main);
}

.payment-option.active {
  border-color: var(--accent-blue);
  background: rgba(14, 165, 233, 0.1);
}

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

.cart-item-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

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

.cart-item-price {
  font-weight: 700;
  text-align: right;
}

.sticky-summary {
  position: sticky;
  top: 100px;
}

#age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.age-gate-box {
  background: #020617;
  color: #e5e7eb;
  max-width: 480px;
  width: 90%;
  padding: 24px 24px 20px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.65);
  text-align: center;
  border: 1px solid #0ea5e9;
}

.age-gate-box h2 {
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.age-gate-box p {
  margin: 0 0 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5f5;
}

.age-gate-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.age-gate-actions button {
  min-width: 140px;
  padding: 10px 18px;
  border-radius: 9999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease, border-color 0.2s ease;
}

#age-yes {
  background: #0ea5e9;
  color: #020617;
  font-weight: 600;
}

#age-yes:hover {
  background: #38bdf8;
  transform: translateY(-1px);
}

#age-no {
  background: transparent;
  color: #e5e7eb;
  border-color: #4b5563;
}

#age-no:hover {
  border-color: #0ea5e9;
  color: #0ea5e9;
  transform: translateY(-1px);
}



#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(2, 6, 23, 0.98);
  color: #e5e7eb;
  padding: 14px 16px;
  z-index: 9998;
}

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

.cookie-banner-text h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #cbd5f5;
}

.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-banner-actions button {
  padding: 8px 14px;
  font-size: 0.9rem;
  border-radius: 9999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

#cookie-settings-btn {
  background: transparent;
  color: #e5e7eb;
  border-color: #4b5563;
}

#cookie-settings-btn:hover {
  border-color: #0ea5e9;
  color: #0ea5e9;
  transform: translateY(-1px);
}

#cookie-accept-all {
  background: #0ea5e9;
  color: #020617;
  font-weight: 600;
}

#cookie-accept-all:hover {
  background: #38bdf8;
  transform: translateY(-1px);
}



#cookie-settings-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.cookie-settings-box {
  background: #020617;
  color: #e5e7eb;
  max-width: 540px;
  width: 90%;
  padding: 22px 22px 16px;
  border-radius: 16px;
  border: 1px solid #0ea5e9;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.cookie-settings-box h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.cookie-settings-box p {
  margin: 0 0 14px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #cbd5f5;
}

.cookie-category {
  padding: 10px 0 12px;
  border-top: 1px solid #1f2937;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.cookie-category-header span,
.cookie-category-header label {
  font-size: 0.9rem;
}

.cookie-category p {
  margin: 0;
  font-size: 0.85rem;
  color: #9ca3af;
}

.cookie-tag {
  padding: 2px 8px;
  border-radius: 9999px;
  background: #0ea5e9;
  color: #020617;
  font-size: 0.75rem;
  font-weight: 600;
}

.cookie-category input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.cookie-settings-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}

.cookie-settings-actions button {
  padding: 8px 16px;
  border-radius: 9999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

#cookie-decline-all {
  background: transparent;
  color: #e5e7eb;
  border-color: #4b5563;
}

#cookie-decline-all:hover {
  border-color: #0ea5e9;
  color: #0ea5e9;
  transform: translateY(-1px);
}

#cookie-save {
  background: #0ea5e9;
  color: #020617;
  font-weight: 600;
}

#cookie-save:hover {
  background: #38bdf8;
  transform: translateY(-1px);
}

.cookie-close-btn {
  margin-top: 10px;
  padding: 6px 10px;
  font-size: 0.8rem;
  background: transparent;
  color: #9ca3af;
  border-radius: 9999px;
  border: 1px solid #4b5563;
  cursor: pointer;
  float: right;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.cookie-close-btn:hover {
  border-color: #0ea5e9;
  color: #0ea5e9;
}

@media (max-width: 640px) {
  .cookie-banner-inner {
    align-items: flex-start;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(5px);


  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: var(--bg-card);
  margin: auto;
  padding: 3rem;
  border: 1px solid var(--accent-blue);
  border-radius: 16px;
  width: 90%;
  max-width: 450px;
  text-align: center;
  box-shadow: 0 0 50px rgba(14, 165, 233, 0.2);
  position: relative;
  animation: modalPop 0.3s ease-out forwards;
}


@keyframes modalPop {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}


.modal-content div:first-child {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: bounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s both;
}

@keyframes bounce {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}.legal-content ul {
            list-style: disc;
            margin-left: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-muted);
        }
        .legal-content li {
            margin-bottom: 0.5rem;
        }
        .legal-content h3 {
            color: var(--accent-blue);
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .legal-content h4 {
            color: var(--text-main);
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }
        .legal-content p {
            margin-bottom: 1rem;
            color: var(--text-muted);
            line-height: 1.7;
        }
        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1rem;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .cookie-table th {
            background-color: rgba(14, 165, 233, 0.1);
            color: var(--accent-blue);
            text-align: left;
            padding: 1rem;
            border: 1px solid var(--border);
        }
        .cookie-table td {
            padding: 1rem;
            border: 1px solid var(--border);
            color: var(--text-muted);
        }.contact-box {
            background-color: rgba(15, 23, 42, 0.5);
            border: 1px solid var(--border);
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 1rem;
        }.help-resources-box {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%);
            border: 1px solid var(--accent-yellow);
            padding: 2rem;
            border-radius: 12px;
            margin-top: 2rem;
            text-align: center;
        }
        .help-phone {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-main);
            display: block;
            margin: 1rem 0;
        }