html, body {
      margin: 0;
      height: 100%;
      background: black;
      overflow: hidden;
      font-family: monospace;
      color: #00ff41;
    }

    canvas {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 0;
    }

    .center-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 6vw;
      font-weight: bold;
      color: #00ff41;
      text-shadow: 0 0 10px #00ff41, 0 0 20px #00ff41;
      z-index: 10;
      pointer-events: none;
      letter-spacing: 0.2em;
      white-space: nowrap;
    }

    .cursor-glow {
      position: fixed;
      width: 60px;
      height: 60px;
      background: radial-gradient(circle, rgba(0,255,65,0.3) 0%, transparent 80%);
      pointer-events: none;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      z-index: 5;
      mix-blend-mode: screen;
    }