
body {
  background-image: url('../../assets/images/splash.jpeg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #87cefa;
  background-color: #0e0e0eea;
  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 soft-glitch {
  0%, 95%, 100% {
    filter: none;
  }
  50% {
    filter: invert(100%) brightness(1.3) contrast(1.1);
  }
}

#logo-container img {
  width: 32px;
  height: 32px;
  animation: soft-glitch 3.4s infinite ease-in-out;
  transition: transform 0.2s ease-in-out;
}

#logo-container img:hover {
  transform: scale(1.2);
}

#logo-container a:nth-child(1) img {
  animation-delay: 0s;
}
#logo-container a:nth-child(2) img {
  animation-delay: 0.8s;
}
#logo-container a:nth-child(3) img {
  animation-delay: 1.5s;
}

@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-window {
  width: 90%;
  max-width: 700px;
  background-color: #0e0e0eaf;
  border: 2px solid #87cefa;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(135, 206, 250, 0.3);
}

#terminal-wrapper {
  text-align: left;
}
#terminal {
  white-space: pre-wrap;
  color: #87cefa;
}
.cursor {
  display: inline-block;
  width: 10px;
  animation: blink 1s infinite;
}
@keyframes blink {
  0%, 50% { background-color: 87cefa; }
  51%, 100% { background-color: transparent; }
}
#continue {
  display: none;
  margin-top: 20px;
  font-style: italic;
  color: #ba55d3;
}
#touch-enter {
  display: none;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: 87cefa;
  color: #ba55d39c;
  border: none;
  font-family: 'Courier New', Courier, monospace;
  cursor: pointer;
}

.option-button {
  display: block;
  margin: 10px 0;
  padding: 15px 20px;
  background-color: rgba(135, 206, 250, 0.1);
  color: #87cefa;
  border: 1px solid #87cefa;
  border-radius: 8px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.option-button:hover {
  background-color: rgba(135, 206, 250, 0.2);
  border-color: #ba55d3;
  color: #ba55d3;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(186, 85, 211, 0.3);
}
@media (max-width: 768px) {
  #touch-enter {
    display: inline-block;
  }
  #continue {
    display: none;
  }
}
