html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

canvas {
  display: block;
  margin: 0 auto;
}

#text-overlay {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  pointer-events: none;
  z-index: 1000;
}

.glow {
  position: absolute;
  width: 320px;
  height: 130px;
  background: radial-gradient(ellipse, rgba(255, 230, 150, 0.5), rgba(255, 200, 100, 0.3), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(30px);
  z-index: -1;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

#text-overlay h1 {
  font-size: 48px;
  font-weight: bold;
  color: rgb(40, 20, 30);
  margin: 0;
  padding: 10px 0;
  text-shadow: 
    0 0 30px rgba(255, 220, 100, 0.8),
    0 0 50px rgba(255, 230, 150, 0.5),
    2px 2px 6px rgba(0, 0, 0, 0.3);
  font-family: 'Arial Black', Arial, sans-serif;
  letter-spacing: 2px;
  animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
  from {
    text-shadow: 
      0 0 20px rgba(255, 220, 100, 0.6),
      0 0 40px rgba(255, 230, 150, 0.4),
      2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  to {
    text-shadow: 
      0 0 35px rgba(255, 220, 100, 0.9),
      0 0 60px rgba(255, 230, 150, 0.6),
      2px 2px 6px rgba(0, 0, 0, 0.4);
  }
}