body {
      font-family: 'Meyrin', monospace;
      font-size: 25px;
      background: black;
      color: lime;
      margin: 0;
      padding: 0;
      text-shadow: 0 0 5px lime, 0 0 10px lime, 0 0 20px lime;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      animation: flicker 0.15s infinite alternate, glitch 1s infinite;
    }
    h1 {
      text-align: center;
      font-size: 40px;
      margin: 30px 0;
      color: cyan;
    }
    #loading {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100vh;
      font-size: 30px;
      color: cyan;
      animation: blink 0.8s infinite alternate;
    }
    @keyframes blink {
      from { opacity: 1; }
      to { opacity: 0.3; }
    }
    .container {
      display: flex;
      justify-content: center;
      gap: 60px;
      flex-grow: 1;
    }
    .column {
      width: 350px;
      line-height: 1.6;
    }
    a {
      color: cyan;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
      color: magenta;
    }
    .emoji {
      margin-right: 8px;
    }
    @keyframes flicker {
      from { opacity: 1; }
      to { opacity: 0.95; }
    }
    @keyframes glitch {
      0% { text-shadow: 0 0 5px lime; }
      50% { text-shadow: 0 0 10px lime, 2px 2px red; }
      100% { text-shadow: 0 0 5px lime, -2px -2px blue; }
    }
    #terminal {
      background: #111;
      border-top: 1px solid lime;
      padding: 10px;
    }
    #terminal input {
      width: 100%;
      background: black;
      border: none;
      outline: none;
      font-family: inherit;
      font-size: 20px;
      color: lime;
    }