body {
  margin: 0;
  height: 100vh;
  overflow: hidden;
  background: #000;
  color: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /* Fix for mobile viewport */
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

/* Fix for mobile viewport height */
html {
  height: -webkit-fill-available;
}

h1 {
  font-size: 3rem;
  letter-spacing: 2px;
  text-shadow: 0 0 10px #fff, 0 0 20px #00f, 0 0 40px #0ff;
  margin-bottom: 0.5em;
  text-align: center;
  padding: 0 1rem;
}

p {
  font-size: 1.5rem;
  color: #ccc;
  text-shadow: 0 0 5px #fff;
  text-align: center;
  padding: 0 1rem;
  max-width: 90vw;
  word-wrap: break-word;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  display: block;
}

/* Mobile specific styles */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  p {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  
  body {
    padding: 1rem;
    box-sizing: border-box;
  }
}
