
body {
  background-color: #000;
  color: #e60026;
  font-family: 'Courier New', Courier, monospace;
  margin: 0;
  padding: 0;
  font-size: 1.2em;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#logo-container {
  margin-bottom: 20px;
}
#logo {
  max-width: 100px;
  height: auto;
  position: relative;
  animation: glitch 1s infinite, flicker-glitch 4s 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); }
}
@keyframes flicker-glitch {
  0%, 96%, 100% {
    filter: grayscale(0%);
    transform: scale(1);
  }
  97% {
    filter: grayscale(100%);
    transform: scale(1.05) rotate(1deg);
  }
  98% {
    filter: grayscale(100%);
    transform: scale(0.97) rotate(-1deg);
  }
  99% {
    filter: grayscale(0%);
    transform: scale(1) rotate(0);
  }
}
#terminal-wrapper {
  text-align: left;
}
#terminal {
  white-space: pre-wrap;
}
.cursor {
  display: inline-block;
  width: 10px;
  animation: blink 1s infinite;
}
@keyframes blink {
  0%, 50% { background-color: #e60026; }
  51%, 100% { background-color: transparent; }
}
#continue {
  display: none;
  margin-top: 20px;
  font-style: italic;
  color: #ff3344;
}
#touch-enter {
  display: none;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #e60026;
  color: #fff;
  border: none;
  font-family: 'Courier New', Courier, monospace;
  cursor: pointer;
}
@media (max-width: 768px) {
  #touch-enter {
    display: inline-block;
  }
  #continue {
    display: none;
  }
}
