body {
    margin:0; padding:0;
    background:#000;
    color:#e0e0e0;
    font-family: 'Courier New', Courier, monospace;
    overflow-x:hidden;
    image-rendering: pixelated;
  }
  pre {
    white-space: pre;
    font-size: 13px;
    line-height: 1.05;
    letter-spacing: 0px;
    margin:0;
    padding: 8px 12px;
  }
  .purple { color: #c084fc; text-shadow: 0 0 6px #a78bfa; }
  .cyan   { color: #22d3ee; text-shadow: 0 0 8px #06b6d4; }
  .dim    { color: #555; }
  .bright { color: #fff; text-shadow: 0 0 10px #fff; }
  .glitch {
    animation: glitch 3s infinite;
  }
  @keyframes glitch {
    0%   { transform: translate(0); }
    20%  { transform: translate(-2px, 2px); }
    40%  { transform: translate(2px, -2px); }
    60%  { transform: translate(-1px, 1px); }
    80%  { transform: translate(1px, -1px); }
    100% { transform: translate(0); }
  }
  .invite {
    display: inline-block;
    margin: 20px 0;
    padding: 12px 32px;
    border: 2px solid #c084fc;
    color: #c084fc;
    background: rgba(0,0,0,0.6);
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.2s;
  }
  .invite:hover {
    background: #c084fc;
    color: #000;
    box-shadow: 0 0 20px #c084fc;
    transform: scale(1.05);
    animation: pulse 0.6s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px #c084fc; }
    50% { box-shadow: 0 0 35px #c084fc, 0 0 50px #a78bfa; }
  }