:root {
  --max-size: 1000px;
}

body {
  margin: 0;
  min-height: 100vh;
  background: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  font-family: Arial, Helvetica, sans-serif;
  padding-top: 20px;
  color: white;
}

#logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

img {
  width: auto;
  height: 350px;
  display: block;
  cursor: pointer;
  max-width: 100%;
}

#logo {
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}



.logo-wrapper {
  width: 90vw;
  max-width: var(--max-size);
  height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: white;
  padding: 8px 0;
  background: rgba(0, 0, 0, 0.4);
}

#mute-btn {
  position: fixed;
  bottom: 50px;
  right: 20px;
  padding: 8px 12px;
  font-size: 0.9rem;
  border: none;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  cursor: pointer;
  transition: background 0.2s;
  display: none;
}

#mute-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* DOS Prompt */
#terminal {
  width: 90vw;
  max-width: var(--max-size);
  height: 600px;
  background: black;
  color: white;
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  margin-top: 5px;
  white-space: pre;
  overflow: auto;
  text-align: left;
  pointer-events: auto;
  touch-action: manipulation;
  cursor: text;
  -webkit-user-select: text;
  user-select: text;
}

.prompt-line {
  display: flex;
  align-items: center;
  text-align: left;
}

.prompt-line span {
  white-space: pre;
}

.cursor {
  display: inline-block;
  width: 10px;
  animation: blink 1s steps(1) infinite;
  vertical-align: bottom;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}
