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

body {
  background: #0c0c14;
  color: #e0e0ff;
  font-family: 'Courier New', monospace;
  overflow: hidden;
  height: 100vh;
  position: relative;
}

canvas#bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #a06bff, #4ecdc4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 2px;
}

p {
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 0.7; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}

.secret {
  position: absolute;
  bottom: 20px;
  font-size: 0.85rem;
  color: #666;
}

#easter {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  z-index: 100;
  pointer-events: none;
}

.interactive-link {
  margin-top: 1.5rem;
  font-size: 1.1rem;
}

.interactive-link a {
  color: #4ecdc4;
  text-decoration: none;
  border-bottom: 1px solid #4ecdc4;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.interactive-link a:hover {
  color: #64ffda;
  border-bottom-color: #64ffda;
  transform: translateX(4px);
}