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

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: black;
  color: rgb(195, 161, 240);
}

#starfield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

/* Overlay container on top of canvas */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 45px;
  align-items: center;
  justify-content: center;
  pointer-events: none; 
  /* so clicks pass through if needed */
}

.about-me-box {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem 3rem;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  border: 3px solid rgb(195, 161, 240);
  animation: pulse-border 6s ease-in-out infinite;
}

.about-me-box h1 {
  font-size: 2rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.about-me-box p {
  font-size: 1rem;
  opacity: 0.8;
}

.coming-soon-box {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem 3rem;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  border: 3px solid rgb(195, 161, 240);
  animation: pulse-border 6s ease-in-out infinite;
}

@keyframes pulse-border {
  0% {
    border-color: rgba(195, 161, 240, 0.35);
    box-shadow: 0 0 10px rgba(195, 161, 240, 0.35);
  }
  50% {
    border-color: rgba(195, 161, 240, 1);
    box-shadow: 0 0 25px rgba(195, 161, 240, 1);
  }
  100% {
    border-color: rgba(195, 161, 240, 0.35);
    box-shadow: 0 0 10px rgba(195, 161, 240, 0.35);
  }
}

.coming-soon-box h1 {
  font-size: 3rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.coming-soon-box p {
  font-size: 1rem;
  opacity: 0.8;
}

@media (max-width: 600px) {
  .coming-soon-box {
    padding: 1.5rem 2rem;
  }
  .coming-soon-box h1 {
    font-size: 2rem;
    letter-spacing: 0.15em;
  }
}
