/* ==========================================================================
   NOX — Neobrutalist Nightlife Style Sheet
   Designed for maximum impact, readability, and mobile responsiveness.
   ========================================================================== */

:root {
  /* High-Contrast Neobrutalist Color Tokens */
  --cream: #FFF6E6; 
  --ink: #000000; 
  --lime: #C8FF4D; 
  --pink: #FF3CAC;
  --cyan: #2EE6D6; 
  --violet: #6A4CFF; 
  --amber: #FFC53D;
  
  /* Text Contrast Color Tokens */
  --muted: var(--ink); /* Changed to var(--ink) to remove brown text completely */
  --soft: var(--ink);  /* Changed to var(--ink) to remove brown text completely */
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Space Grotesk', Arial, sans-serif;
  background-color: var(--cream);
  background-image: radial-gradient(var(--ink) 1px, transparent 1.6px);
  background-size: 18px 18px;
  background-attachment: fixed;
  color: var(--ink);
  line-height: 1.5;
}

/* Typography Classes */
.disp {
  font-family: 'Unbounded', Arial, sans-serif;
  letter-spacing: -0.02em;
}

.punch {
  font-family: 'Anton', Arial, sans-serif;
  letter-spacing: 0.5px;
}

.hand {
  font-family: 'Caveat', cursive;
}

.mono {
  font-family: 'Space Mono', monospace;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  max-width: 100%;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* Neobrutalist Borders & Shadow System */
.brut {
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
}

.brut:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
}

.brut-sm {
  border: 2.5px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.brut-press {
  cursor: pointer;
}

.brut-press:active {
  transform: translate(3px, 3px) !important;
  box-shadow: 1px 1px 0 var(--ink) !important;
}

/* Rotations for Neobrutalist Visual Energy */
.rot-l { transform: rotate(-4deg); }
.rot-r { transform: rotate(3deg); }
.rot-l2 { transform: rotate(-2deg); }

/* Navigation Bar */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 246, 230, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  font-weight: 800;
  font-size: 26px;
  font-family: 'Unbounded', sans-serif;
  letter-spacing: -0.04em;
}

.logo .o {
  color: var(--pink);
  display: inline-block;
  transform: rotate(-10deg);
}

.nav-btn {
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  padding: 9px 20px;
  border-radius: 999px;
  display: inline-block;
}

/* Scrolling Tickers */
.ticker-bar {
  background: var(--ink);
  color: var(--cream);
  padding: 10px 0;
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: scroll 24s linear infinite;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.ticker-track span {
  padding: 0 22px;
  white-space: nowrap;
}

.pub-ticker {
  background: var(--violet);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
  padding: 10px 0;
}

.pub-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite reverse;
  font-weight: 700;
  color: #ffffff;
  font-size: 14px;
}

.pub-track span {
  padding: 0 22px;
  white-space: nowrap;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Hero Section */
.hero {
  padding: 80px 24px 72px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-left {
  position: relative;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Big Stats Billboard Card (Neobrutalist) */
.stats-card {
  background: var(--lime);
  color: var(--ink);
  border: 3.5px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  border-radius: 24px;
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-item .stat-num {
  font-size: 72px; /* Made bigger! */
  font-family: 'Anton', Arial, sans-serif;
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: 0.5px;
}

.stat-item .stat-lbl {
  font-size: 14.5px; /* Made bigger! */
  font-family: 'Space Mono', monospace;
  font-weight: 800;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

.stat-divider {
  height: 1px;
  border-top: 3px dashed var(--ink);
  margin: 32px 0;
  width: 100%;
}

.hero-badge-1, .hero-badge-2 {
  position: absolute;
  font-weight: 700;
  border-radius: 16px;
  padding: 8px 14px;
  font-size: 14px;
  z-index: 3;
}

.hero-badge-1 {
  top: 10px;
  right: 0;
  background: var(--amber);
}

.hero-badge-2 {
  top: 125px;
  right: 60px;
  background: var(--cyan);
  border-radius: 999px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
}

.kicker {
  font-size: 24px;
  color: var(--pink);
  display: block;
}

h1.hero-title {
  font-weight: 900;
  line-height: 0.95;
  margin: 10px 0 0;
  font-size: clamp(42px, 8vw, 84px);
  letter-spacing: -0.03em;
  word-break: break-word;
}

.highlight {
  background: var(--lime);
  padding: 0 14px;
  display: inline-block;
  border-radius: 8px;
  border: 3.5px solid var(--ink);
}

.hero p.lead {
  margin-top: 36px;
  max-width: 530px;
  font-size: 17.5px;
  line-height: 2.15;
  color: var(--ink);
}

.lead-highlight {
  background: #ffffff;
  color: var(--ink); /* Force black text inside white tape highlight */
  border: 2.5px solid var(--ink);
  padding: 5px 10px;
  box-shadow: 3px 3px 0 var(--ink);
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-weight: 700;
  display: inline;
}

/* Waitlist Form System */
.join-form-container {
  margin-top: 32px;
  max-width: 520px;
}

.join-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

input[type=email] {
  flex: 1;
  min-width: 200px;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  border-radius: 999px;
  padding: 16px 20px;
  font-size: 16px;
  font-family: 'Space Grotesk', sans-serif;
  background: #ffffff;
  color: var(--ink);
  outline: none;
}

input[type=email]:focus {
  box-shadow: 6px 6px 0 var(--ink);
  background: #fffdfa;
}

/* High-Contrast Input Placeholders */
input::placeholder {
  color: rgba(0, 0, 0, 0.6) !important;
  opacity: 1 !important; /* Ensure browsers don't wash out placeholder text */
}

.btn {
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  border-radius: 999px;
  padding: 16px 30px;
  font-weight: 800;
  font-size: 16px;
  font-family: 'Unbounded', sans-serif;
  background: var(--pink);
  color: var(--ink); /* Changed from #ffffff to var(--ink) to match neobrutalist styling & ensure 8.4:1 contrast on pink background */
  white-space: nowrap;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.btn:active {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 var(--ink);
}

/* Compliant 18+ Age Gate Styling */
.age-gate-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  text-align: left;
}

.age-gate-container input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2.5px solid var(--ink);
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 2px 2px 0 var(--ink);
  cursor: pointer;
  position: relative;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.age-gate-container input[type="checkbox"]:checked {
  background-color: var(--pink);
}

.age-gate-container input[type="checkbox"]:checked::after {
  content: "✓";
  color: var(--ink);
  font-weight: 900;
  font-size: 14px;
  display: block;
}

.age-gate-container input[type="checkbox"]:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--ink);
}

.age-gate-container label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--soft);
  cursor: pointer;
  user-select: none;
}

.required-star {
  color: var(--pink);
  font-weight: 700;
}

.form-hint {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink); /* Changed from var(--muted) to var(--ink) to fix visibility on cream */
  font-weight: 600;
}

.form-success {
  margin-top: 14px;
  font-size: 14px;
  color: #0b9b68;
  font-weight: 700;
  display: none;
}

.stat-row {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.stat-num {
  font-weight: 400;
  font-size: 38px;
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.5px;
}

.stat-lbl {
  font-size: 12px;
  color: var(--ink); /* Changed from var(--muted) to var(--ink) to fix visibility on cream */
  margin-top: 4px;
  letter-spacing: 0.5px;
  font-weight: 700;
}

/* Sections Base */
section {
  padding: 80px 24px;
}

.dark {
  background-color: var(--ink);
  color: var(--cream);
  background-image: radial-gradient(rgba(255, 246, 230, 0.05) 1px, transparent 1.6px);
  background-size: 18px 18px;
}

.lime-bg {
  background-color: var(--lime);
}

.violet-bg {
  background-color: var(--violet);
  color: #ffffff;
}

.eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}

h2.section-title {
  font-weight: 800;
  font-size: clamp(30px, 5vw, 50px);
  margin: 12px 0 0;
  max-width: 600px;
  letter-spacing: -0.03em;
}

.section-sub {
  margin-top: 24px;
  max-width: 530px;
  font-size: 15.5px;
  line-height: 2.15;
  color: var(--ink);
  font-weight: 500;
}

.dark .section-sub {
  color: #ffffff;
}

/* Bento Grid */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.bento-card {
  border-radius: 24px;
  padding: 36px;
  color: var(--ink); /* Force text inside neon cards to use high contrast dark ink */
}

.bento-card h3 {
  font-weight: 800;
  font-size: 22px;
  margin: 14px 0 8px;
  font-family: 'Unbounded', sans-serif;
  color: var(--ink); /* Force headings on neon cards to be high-contrast dark ink */
  letter-spacing: -0.03em;
}

.bento-card p {
  margin: 0;
  font-weight: 500;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.85); /* Ensure body copy is dark and readable */
}

.bento-wide {
  grid-column: span 2;
}

.bento-num {
  font-weight: 400;
  font-size: 48px;
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.5px;
  color: var(--ink);
}

/* Scroll Animation classes */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Safety Grid */
.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.safety-card {
  background: #ffffff;
  color: var(--ink);
  border-radius: 26px;
  padding: 36px;
  position: relative;
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}

.safety-tag {
  position: absolute;
  top: -18px;
  left: 28px;
  font-family: 'Caveat', cursive;
  font-size: 20px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  color: #ffffff;
  border: 2.5px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
}

.safety-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin: 16px 0 8px;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.safety-card p {
  margin: 0;
  color: var(--soft);
  font-size: 15px;
  font-weight: 500;
}

.emoji-lg {
  font-size: 32px;
}

/* Tickets & Comparison */
.price-wrap {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.ticket {
  position: relative;
  background: #ffffff;
  color: var(--ink);
  border-radius: 18px;
  padding: 30px 32px;
  width: 280px;
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

/* Semi-circular ticket notches */
.ticket::before, .ticket::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.ticket::before {
  left: -14px;
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%, 0 50%);
}

.ticket::after {
  right: -14px;
  clip-path: polygon(0 0, 50% 0, 100% 50%, 50% 100%, 0 100%);
}

.ticket.pink {
  background: var(--pink);
  color: #ffffff;
}

.ticket.pink::before, .ticket.pink::after {
  background: var(--cream);
}

.ticket-label {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
}

.ticket-amt {
  font-weight: 400;
  font-size: 52px;
  margin: 8px 0;
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.5px;
}

.perf {
  border-top: 3px dashed var(--ink);
  margin-top: 20px;
  padding-top: 16px;
  font-size: 14.5px;
  font-weight: 500;
  text-align: left;
}

.ticket.pink .perf {
  border-top-color: #ffffff;
}

.perf div {
  margin-bottom: 8px;
}

.vs-text {
  font-family: 'Caveat', cursive;
  font-size: 34px;
  transform: rotate(-8deg);
  font-weight: 700;
  color: var(--pink);
  text-shadow: 1px 1px 0 var(--ink);
}

/* Chat Bubbles */
.chat-stack {
  max-width: 480px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bubble {
  border-radius: 22px;
  padding: 14px 22px;
  font-weight: 600;
  max-width: 80%;
  font-size: 15px;
  border: 2.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}

.bubble.left {
  background: #ffffff;
  color: var(--ink);
  border-radius: 22px 22px 22px 6px;
  align-self: flex-start;
}

.bubble.right {
  background: var(--lime);
  color: var(--ink);
  border-radius: 22px 22px 6px 22px;
  align-self: flex-end;
}

/* Accordion FAQ */
.faq-wrap {
  max-width: 700px;
  margin: 44px auto 0;
}

.faq-item {
  background: #ffffff;
  color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  border-radius: 18px;
  padding: 20px 24px;
  margin-bottom: 18px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 7px 7px 0 var(--ink);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
}

.faq-q .chev {
  transition: transform .25s ease;
  font-size: 22px;
  font-weight: 700;
  color: var(--pink);
}

.faq-item.open .chev {
  transform: rotate(45deg);
  color: var(--muted);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-item.open .faq-a {
  max-height: 220px;
}

.faq-a p {
  margin: 14px 0 0;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
}

/* Call to Action Final */
.cta-final {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final h2 {
  font-weight: 900;
  font-size: clamp(36px, 6vw, 62px);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.cta-final p.sub {
  margin-top: 24px;
  color: #ffffff;
  font-size: 15.5px;
  line-height: 2.15;
  font-weight: 500;
}

.cta-deco {
  position: absolute;
  font-size: 48px;
  opacity: 0.95;
  user-select: none;
}

/* Footer & Compliance Disclosures */
footer {
  background: var(--ink);
  color: #ffffff;
  padding: 40px 24px 100px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 3px solid #333333;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
}

footer .footer-corp {
  max-width: 600px;
}

footer .links {
  display: flex;
  gap: 24px;
  font-weight: 700;
}

footer a:hover {
  color: #ffffff;
}

/* Mobile Fixed Bottom Bar (Only visible on screens <= 760px) */
.mobile-cta-form {
  margin: 0;
  padding: 0;
}

.mobile-cta {
  display: none; /* Controlled by media query */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--cream);
  border-top: 3px solid var(--ink);
  padding: 12px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.15);
}

.mobile-input-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-cta input[type=email] {
  padding: 12px 16px;
  font-size: 14px;
  width: 100%;
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink);
}

.checkbox-row-mobile {
  display: flex;
  align-items: center;
  gap: 6px;
  text-align: left;
}

.checkbox-row-mobile input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid var(--ink);
  background-color: #ffffff;
  border-radius: 3px;
  box-shadow: 1.5px 1.5px 0 var(--ink);
  cursor: pointer;
  position: relative;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checkbox-row-mobile input[type="checkbox"]:checked {
  background-color: var(--pink);
}

.checkbox-row-mobile input[type="checkbox"]:checked::after {
  content: "✓";
  color: var(--ink);
  font-weight: 900;
  font-size: 11px;
  display: block;
}

.checkbox-row-mobile input[type="checkbox"]:active {
  transform: translate(1px, 1px);
  box-shadow: 0.5px 0.5px 0 var(--ink);
}

.checkbox-row-mobile label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}

.mobile-cta .btn {
  padding: 12px 20px;
  font-size: 14px;
  box-shadow: 4px 4px 0 var(--ink);
}

/* 15. Native dialog Modal Backdrop & Style */
dialog#privacyDialog {
  background: var(--cream);
  border: 3.5px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  border-radius: 20px;
  width: 90%;
  max-width: 580px;
  padding: 0;
  margin: auto;
  overflow: hidden;
  outline: none;
}

dialog#privacyDialog::backdrop {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.dialog-content {
  display: flex;
  flex-direction: column;
  max-height: 80vh;
}

.dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 3.5px solid var(--ink);
  background: var(--lime);
}

.dialog-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
  text-transform: uppercase;
}

.dialog-header .close-btn {
  background: var(--pink);
  color: #ffffff;
  border: 2.5px solid var(--ink);
  font-size: 20px;
  font-weight: 700;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 2px 2px 0 var(--ink);
}

.dialog-body {
  padding: 24px;
  overflow-y: auto;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--soft);
}

.dialog-body p {
  margin-top: 0;
  margin-bottom: 18px;
}

/* 16. Media Queries & Responsiveness */

@media (max-width: 760px) {
  .bento {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .bento-wide {
    grid-column: span 1;
  }
  
  .safety-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .hero-badge-1, .hero-badge-2 {
    display: none;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .mobile-cta {
    display: flex;
  }
  
  footer {
    padding-bottom: 110px; /* Make space for mobile fixed bar */
  }
  
  .cart-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .cart-wrapper {
    grid-template-columns: 1fr;
  }
  
  .ticket {
    width: 100%;
  }
}

@media (min-width: 761px) {
  .mobile-cta {
    display: none !important;
  }
}
