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

body {
  background: #000;
  overflow: hidden;
}

canvas {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
}

.message-overlay {
  position: fixed;
  bottom: 40px;
  width: 100%;
  text-align: center;
  z-index: 10;
  pointer-events: none;
}

.message {
  color: #ea80b0;
  font-family: 'Be Vietnam Pro', Georgia, 'Times New Roman', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  text-shadow: 0 0 8px #ea80b0, 0 0 20px rgba(234, 128, 176, 0.4);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
  padding: 0 20px;
}

.cursor-blink {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: #ea80b0;
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@media (max-width: 600px) {
  .message {
    font-size: 0.9rem;
    bottom: 20px;
  }
}
