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

body {
  background: #000;
  overflow: hidden;
  font-family: 'Segoe UI', system-ui, sans-serif;
  width: 100vw;
  height: 100vh;
}

#space {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.logo-wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
  z-index: 10;
}

.logo {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: none;
  line-height: 1;
  filter: drop-shadow(0 0 30px rgba(150, 80, 255, 0.8))
          drop-shadow(0 0 60px rgba(100, 40, 200, 0.5));
  animation: logo-pulse 4s ease-in-out infinite;
}

.logo-mysti {
  color: #ffffff;
}

.logo-c {
  color: #c084fc;
}

.logo-labs {
  color: #a855f7;
}

.tagline {
  margin-top: 0.75rem;
  font-size: clamp(0.75rem, 2vw, 1rem);
  color: rgba(200, 150, 255, 0.6);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: tagline-fade 4s ease-in-out infinite;
}

@keyframes logo-pulse {
  0%, 100% {
    filter: drop-shadow(0 0 30px rgba(150, 80, 255, 0.8))
            drop-shadow(0 0 60px rgba(100, 40, 200, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 50px rgba(180, 100, 255, 1))
            drop-shadow(0 0 100px rgba(120, 60, 220, 0.7));
  }
}

@keyframes tagline-fade {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
