/* CSS Variables matching the original app */
:root {
  --accent-color: #A06EEA;
  --accent-hover: #8b5bd6;
  --accent-light: rgba(160, 110, 234, 0.1);
  --accent-border: rgba(160, 110, 234, 0.3);
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "IBM Plex Mono", monospace;
  background: #050306;
  color: white;
  overflow: hidden;
  height: 100vh;
}

/* Title font styling */
.title-font {
  font-family: "Space Grotesk", sans-serif;
}

/* Background with clean gradient */
.grid-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: 
    radial-gradient(circle at 30% 20%, rgba(160, 110, 234, 0.012) 0%, transparent 80%),
    radial-gradient(circle at 70% 80%, rgba(160, 110, 234, 0.008) 0%, transparent 80%),
    linear-gradient(135deg, #050306 0%, #080609 50%, #050306 100%);
  pointer-events: none;
  overflow: hidden;
}

/* Falling animation keyframes - extended to go fully off screen */
@keyframes fallDown {
  0% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.1;
  }
  85% {
    opacity: 0.1;
  }
  100% {
    transform: translateY(calc(100vh + 800px)) rotate(360deg);
    opacity: 0;
  }
}

@keyframes fallDownLeft {
  0% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.1;
  }
  85% {
    opacity: 0.1;
  }
  100% {
    transform: translateY(calc(100vh + 800px)) translateX(-40px) rotate(180deg);
    opacity: 0;
  }
}

@keyframes fallDownRight {
  0% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.1;
  }
  85% {
    opacity: 0.1;
  }
  100% {
    transform: translateY(calc(100vh + 800px)) translateX(40px) rotate(-180deg);
    opacity: 0;
  }
}

/* Falling shapes container */
.falling-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

/* Individual shape positioning and animations - Fixed positioning */
.shape {
  position: absolute;
  opacity: 0.1;
}

/* Ellipse shapes */
.ellipse-1 {
  width: 384px;
  height: 320px;
  left: 15%;
  top: -600px;
  animation: fallDown 45s infinite linear;
  animation-delay: 0s;
}

/* Lightning shapes */
.lightning-1 {
  width: 288px;
  height: 384px;
  left: 75%;
  top: -700px;
  animation: fallDownLeft 60s infinite linear;
  animation-delay: 8s;
}

.lightning-2 {
  width: 288px;
  height: 384px;
  left: 45%;
  top: -650px;
  animation: fallDownRight 55s infinite linear;
  animation-delay: 30s;
}

/* Star shapes */
.star-1 {
  width: 320px;
  height: 320px;
  left: 35%;
  top: -800px;
  animation: fallDownRight 55s infinite linear;
  animation-delay: 15s;
}

.star-2 {
  width: 320px;
  height: 320px;
  left: 70%;
  top: -750px;
  animation: fallDownLeft 48s infinite linear;
  animation-delay: 12s;
}

/* Hexagon shapes */
.hexagon-1 {
  width: 384px;
  height: 384px;
  left: 60%;
  top: -900px;
  animation: fallDown 70s infinite linear;
  animation-delay: 25s;
}

/* Rainbow shapes */
.rainbow-1 {
  width: 384px;
  height: 320px;
  left: 5%;
  top: -550px;
  animation: fallDownLeft 50s infinite linear;
  animation-delay: 35s;
}

/* Cylinder shapes */
.cylinder-1 {
  width: 320px;
  height: 384px;
  left: 85%;
  top: -850px;
  animation: fallDownRight 65s infinite linear;
  animation-delay: 42s;
}

.cylinder-2 {
  width: 320px;
  height: 384px;
  left: 10%;
  top: -700px;
  animation: fallDown 62s infinite linear;
  animation-delay: 28s;
}

/* Rectangle shapes */
.rectangle-1 {
  width: 288px;
  height: 384px;
  left: 25%;
  top: -600px;
  animation: fallDown 40s infinite linear;
  animation-delay: 18s;
}

/* Third wave shapes */
.ellipse-2 {
  width: 300px;
  height: 250px;
  left: 80%;
  top: -750px;
  animation: fallDownLeft 35s infinite linear;
  animation-delay: 5s;
}

.star-3 {
  width: 200px;
  height: 200px;
  left: 20%;
  top: -850px;
  animation: fallDownRight 42s infinite linear;
  animation-delay: 22s;
}

.lightning-3 {
  width: 220px;
  height: 300px;
  left: 90%;
  top: -700px;
  animation: fallDown 38s infinite linear;
  animation-delay: 16s;
}

.hexagon-2 {
  width: 250px;
  height: 250px;
  left: 50%;
  top: -900px;
  animation: fallDownLeft 52s infinite linear;
  animation-delay: 32s;
}

.rectangle-2 {
  width: 200px;
  height: 280px;
  left: 5%;
  top: -650px;
  animation: fallDownRight 33s infinite linear;
  animation-delay: 11s;
}

.cylinder-3 {
  width: 280px;
  height: 350px;
  left: 65%;
  top: -800px;
  animation: fallDown 47s infinite linear;
  animation-delay: 27s;
}

/* Small shapes - fourth wave */
.star-small-1 {
  width: 120px;
  height: 120px;
  left: 15%;
  top: -500px;
  animation: fallDownLeft 25s infinite linear;
  animation-delay: 3s;
}

.lightning-small-1 {
  width: 100px;
  height: 150px;
  left: 85%;
  top: -450px;
  animation: fallDownRight 28s infinite linear;
  animation-delay: 7s;
}

.ellipse-small-1 {
  width: 150px;
  height: 120px;
  left: 40%;
  top: -550px;
  animation: fallDown 22s infinite linear;
  animation-delay: 14s;
}

.star-small-2 {
  width: 100px;
  height: 100px;
  left: 75%;
  top: -400px;
  animation: fallDownLeft 26s infinite linear;
  animation-delay: 9s;
}

.lightning-small-2 {
  width: 90px;
  height: 140px;
  left: 30%;
  top: -480px;
  animation: fallDownRight 24s infinite linear;
  animation-delay: 19s;
}

/* New shapes from shapes/ folder */
.cloud-1 {
  width: 260px;
  height: 160px;
  left: 12%;
  top: -650px;
  animation: fallDownRight 45s infinite linear;
  animation-delay: 6s;
}

.diamond-1 {
  width: 200px;
  height: 150px;
  left: 88%;
  top: -550px;
  animation: fallDownLeft 38s infinite linear;
  animation-delay: 13s;
}

.eye-1 {
  width: 220px;
  height: 130px;
  left: 55%;
  top: -700px;
  animation: fallDown 41s infinite linear;
  animation-delay: 21s;
}

.moon-1 {
  width: 180px;
  height: 180px;
  left: 25%;
  top: -750px;
  animation: fallDownRight 36s infinite linear;
  animation-delay: 8s;
}

.shield-1 {
  width: 170px;
  height: 210px;
  left: 78%;
  top: -600px;
  animation: fallDownLeft 43s infinite linear;
  animation-delay: 17s;
}

.drop-1 {
  width: 130px;
  height: 200px;
  left: 35%;
  top: -520px;
  animation: fallDown 29s infinite linear;
  animation-delay: 4s;
}

.infinity-1 {
  width: 200px;
  height: 90px;
  left: 65%;
  top: -450px;
  animation: fallDownRight 34s infinite linear;
  animation-delay: 11s;
}

.pill-1 {
  width: 180px;
  height: 80px;
  left: 8%;
  top: -500px;
  animation: fallDownLeft 31s infinite linear;
  animation-delay: 15s;
}

.asterisk-1 {
  width: 190px;
  height: 190px;
  left: 45%;
  top: -650px;
  animation: fallDown 39s infinite linear;
  animation-delay: 23s;
}

.party-1 {
  width: 220px;
  height: 220px;
  left: 72%;
  top: -800px;
  animation: fallDownLeft 49s infinite linear;
  animation-delay: 26s;
}

/* Second wave duplicates */
.cloud-2 {
  width: 200px;
  height: 120px;
  left: 92%;
  top: -580px;
  animation: fallDownRight 32s infinite linear;
  animation-delay: 9s;
}

.diamond-2 {
  width: 160px;
  height: 120px;
  left: 18%;
  top: -480px;
  animation: fallDownLeft 27s infinite linear;
  animation-delay: 14s;
}



/* Teaser Content */
.teaser-content {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.teaser-center {
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.domain-text {
  font-size: 12px;
  font-weight: 400;
  font-family: "Space Grotesk", sans-serif;
  color: #9ca3af;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  text-transform: lowercase;
}

.teaser-message {
  font-size: 14px;
  font-weight: 400;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.4;
  color: white;
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0 auto;
}

/* Fade in animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Social Icons */
.social-icons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  z-index: 10;
}

.social-icon {
  color: white;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.social-icon:hover {
  opacity: 1;
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Adjust falling shapes for mobile */
  .shape {
    transform: scale(0.7);
  }
  
  .teaser-message {
    padding: 0 20px;
  }
  
  .social-icons {
    bottom: 20px;
    right: 20px;
    gap: 16px;
  }
  
  .social-icon svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .shape {
    transform: scale(0.5);
  }
  
  .teaser-message {
    font-size: 12px;
    padding: 0 20px;
  }
  
  .social-icons {
    bottom: 16px;
    right: 16px;
    gap: 14px;
  }
  
  .social-icon svg {
    width: 12px;
    height: 12px;
  }
}
