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

/* Body */
body {
  font-family: 'Space Grotesk', sans-serif;
  color: #ffffff;
  background: #0f0f0f;
  overflow: hidden;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  position: relative;
}

/* Canvas background */
#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

/* Content */
.container {
  z-index: 1;
  max-width: 600px;
  padding: 20px;
}

h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #e0e0e0;
}

.coming-soon {
  font-size: 1rem;
  color: #cccccc;
  margin-top: 30px;
}

/* Wave */
.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
}
