/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
}

/* Canvas Container */
#three-container canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Eddie Modal */
#eddieModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(20, 20, 20, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

#eddieContent {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: rgb(20, 20, 20);
}

#closeModalBtn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: white;
  cursor: pointer;
  z-index: 10001;
}

/* Mic Button */
.mic-button {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ec4899, #ef4444, #f59e0b);
  background-size: 300% 300%;
  animation: moveGradient 4s ease infinite;
  z-index: 10;
}

/* Gradient Animations */
@keyframes moveGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.gradient-text {
  background: linear-gradient(135deg, #ec4899, #ef4444, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: moveGradient 4s ease infinite;
}

.hero-gradient {
  background: linear-gradient(135deg, rgba(236,72,153,0.1), rgba(239,68,68,0.1), rgba(245,158,11,0.1));
  background-size: 200% 200%;
  animation: moveGradient 4s ease infinite;
}

/* Custom Background Colors */
.bg-dark-custom {
  background-color: rgb(20, 20, 20);
}

.bg-dark-custom-opacity-80 {
  background-color: rgba(20, 20, 20, 0.8);
} 