    body {
      background: var(--bg);
      color: var(--fg);
      font-family: var(--font);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      text-align: center;
      padding: 2rem;
      position: relative;
      mix-blend-mode: screen;
    }

    canvas {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: -2;
      pointer-events: none;
    }

    h1 {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: var(--accent);
      text-shadow: 0 0 10px rgba(0,255,255,0.1);
    }

    p {
      font-size: 1rem;
      color: var(--fg);
      max-width: 500px;
      line-height: 1.6;
      margin: 1rem auto;
    }

    a {
      display: inline-block;
      margin-top: 2rem;
      color: var(--accent);
      text-decoration: none;
      font-weight: bold;
      border: 1px solid var(--accent);
      padding: 0.6rem 1.2rem;
      border-radius: 4px;
      transition: background 0.3s ease, color 0.3s ease;
    }

    a:hover {
      background: var(--accent-hover);
      color: #000;
    }
