:root {
  --bg-color: #050505;
  --text-primary: #ffffff;
  --accent-primary: #bbf246; /* Acid Green */
  --accent-secondary: #00f3ff; /* Electric Blue */
  --font-heading: 'Anton', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none; /* Hide default cursor */
}

a, button {
  cursor: none;
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: var(--accent-primary);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  mix-blend-mode: difference;
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor.hover {
  width: 50px;
  height: 50px;
  background-color: var(--accent-secondary);
}

/* Scroll Snapping Container */
.container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.snap-section {
  height: 100vh;
  width: 100vw;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Hero Section */
.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.glitch-title {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 12rem);
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  display: inline-block;
  color: var(--text-primary);
}

.glitch-title::before,
.glitch-title::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.glitch-title::before {
  left: 3px;
  text-shadow: -2px 0 var(--accent-secondary);
  clip: rect(24px, 550px, 90px, 0);
}

.glitch-title::after {
  left: -3px;
  text-shadow: -2px 0 var(--accent-primary);
  clip: rect(85px, 550px, 140px, 0);
}

.glitch-title:hover::before,
.glitch-title:hover::after {
  opacity: 1;
  animation: glitch-anim 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% {
    clip: rect(24px, 9999px, 90px, 0);
  }
  20% {
    clip: rect(85px, 9999px, 140px, 0);
  }
  40% {
    clip: rect(10px, 9999px, 40px, 0);
  }
  60% {
    clip: rect(50px, 9999px, 100px, 0);
  }
  80% {
    clip: rect(120px, 9999px, 150px, 0);
  }
  100% {
    clip: rect(30px, 9999px, 70px, 0);
  }
}

/* Countdown */
.countdown-wrapper {
  margin: 1rem 0;
}

.countdown {
  display: flex;
  gap: 2rem;
  font-family: var(--font-body);
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time-block span {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-secondary);
}

.time-block label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  opacity: 0.7;
}

/* Button */
.pulse-btn {
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--bg-color);
  background-color: var(--accent-primary);
  padding: 1rem 3rem;
  border-radius: 50px;
  position: relative;
  transition: transform 0.2s ease;
  overflow: hidden;
}

.pulse-btn:hover {
  transform: scale(1.05);
}

.pulse-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  box-shadow: 0 0 20px var(--accent-primary);
  opacity: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Vibe Section */
.vibe-content {
  width: 80%;
  max-width: 1000px;
  text-align: center;
}

.vibe-content p {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 100;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Logistics Section */
.logistics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px; /* For thin neon borders */
  background-color: var(--accent-secondary);
  padding: 2px;
  width: 90%;
  max-width: 1200px;
}

.grid-item {
  background-color: var(--bg-color);
  padding: 4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background-color 0.3s;
}

.grid-item:hover {
  background-color: #111;
}

.grid-item h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent-secondary);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.grid-item p {
  font-weight: 300;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

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

/* Sound Marquee Section */
.marquee-container {
  width: 100vw;
  overflow: hidden;
  background-color: var(--accent-primary);
  padding: 2rem 0;
  transform: rotate(-2deg) scale(1.1);
}

.marquee {
  white-space: nowrap;
  display: inline-block;
  animation: marquee-scroll 15s linear infinite;
}

.marquee span {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--bg-color);
  text-transform: uppercase;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* RSVP Footer */
.rsvp-content {
  width: 100%;
  max-width: 600px;
  padding: 2rem;
}

.rsvp-content h2 {
  font-family: var(--font-heading);
  font-size: 4rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--accent-secondary);
}

#rsvp-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.input-group input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  padding: 1rem 0;
  outline: none;
  transition: border-color 0.3s;
}

.input-group input:focus {
  border-bottom-color: var(--accent-primary);
}

.submit-btn {
  background: transparent;
  border: 1px solid var(--accent-primary);
  color: var(--accent-primary);
  font-family: var(--font-heading);
  font-size: 2rem;
  padding: 1rem;
  margin-top: 2rem;
  transition: all 0.3s;
}

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