
    body {
      background-color: #0a0a0a;
      color: #00ffc6;
      font-family: 'Courier New', monospace;
      font-size: 14px;
      margin: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh;
      overflow: hidden;
    }

    #ascii, #asciiSoon, #asciiExtra {
      white-space: pre;
      line-height: 1;
      text-shadow: 0 0 5px #00ffc6, 0 0 10px #00ffc6, 0 0 20px #00997a;
      transition: text-shadow 0.3s ease-in-out;
      text-align: center;
    }

    #asciiSoon {
      margin-top: 20px;
      opacity: 0;
      font-size: 12px;
      animation: glowSoon 2s ease-in-out infinite;
    }

    #asciiExtra {
      margin-top: 20px;
      opacity: 0;
      font-size: 12px;
      animation: glowSoon 2s ease-in-out infinite;
    }

    @keyframes glow {
      0% { text-shadow: 0 0 5px #00ffc6, 0 0 10px #00ffc6, 0 0 20px #00997a; }
      50% { text-shadow: 0 0 15px #00fff2, 0 0 30px #00fff2, 0 0 45px #00bbaa; }
      100% { text-shadow: 0 0 5px #00ffc6, 0 0 10px #00ffc6, 0 0 20px #00997a; }
    }

    @keyframes glowSoon {
      0%, 100% { opacity: 0.5; text-shadow: 0 0 5px #00ffc6, 0 0 10px #00ffc6, 0 0 20px #00997a; }
      50% { opacity: 1; text-shadow: 0 0 15px #00fff2, 0 0 30px #00fff2, 0 0 45px #00bbaa; }
    }

    @keyframes blink {
      0%, 50%, 100% { opacity: 1; }
      25%, 75% { opacity: 0; }
    }

    .container {
      text-align: center;
    }

.last-update {
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-family: monospace;
  font-size: 12px;
  color: #aaa;
  opacity: 0.7;
}
