/* Simple, valid CSS for Coming Soon overlay */

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

body {
  font-family: "Montserrat", sans-serif;
  background: #000;
  color: #fff;
  overflow: hidden;
}

#container {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
}

canvas {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* keep canvas interactions if needed */
}

.content {
  text-align: center;
  padding: 2rem;
  max-width: 720px;
  width: calc(100% - 2rem);
  pointer-events: auto;
  animation: fadeInUp 1.2s ease-out forwards;
}

.logo {
  max-width: 140px;
  margin: 0 auto 1.25rem;
  display: block;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.3s forwards;
}

.title {
  font-size: 2.6rem;
  letter-spacing: 6px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c0c0c0, transparent);
  margin: 0.75rem auto 1rem;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.8s forwards;
}

.subtitle {
  color: #c0c0c0;
  letter-spacing: 10px;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1s forwards;
}

.description {
  color: #e0e0e0;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeIn 1s ease-out 1.3s forwards;
}

.contact {
  pointer-events: auto;
}

.email {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  border: 1px solid rgba(192, 192, 192, 0.5);
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.6s forwards;
  transition: all 0.3s ease;
  pointer-events: auto;
  cursor: pointer;
}

.email:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(192, 192, 192, 0.8);
  transform: translateY(-2px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .title {
    font-size: 1.6rem;
    letter-spacing: 3px;
  }
  .subtitle {
    letter-spacing: 6px;
  }
  .logo {
    max-width: 100px;
  }
}


/*# sourceMappingURL=main.css.map*/