/* General Styling */
body {
  margin: 0;
  font-family: 'Courier New', Courier, monospace;
  background: #000;
  color: #0f0;
  overflow: hidden;
}

.center-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.hidden {
  display: none;
}

/* Boot Screen */
.glitch {
  font-size: 3em;
  color: lime;
  text-transform: uppercase;
  position: relative;
  animation: glitch 1.5s infinite;
}

.subtitle {
  color: #0f0;
  margin-top: 10px;
}

.start-btn {
  margin-top: 20px;
  padding: 10px 20px;
  background: #0f0;
  color: #000;
  border: none;
  cursor: pointer;
}

/* Terminal */
.terminal {
  position: absolute;
  top: 10%;
  left: 5%;
  right: 5%;
  bottom: 5%;
  border: 2px solid #0f0;
  padding: 10px;
  overflow-y: auto;
  background: #000;
}

#story-log {
  white-space: pre-wrap;
  word-wrap: break-word;
}

#input-line {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

#input-line span {
  margin-right: 5px;
}

/* Fake Google Screen */
#fake-google-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: white;
  color: black;
}

.google-header {
  text-align: center;
}

.google-logo {
  font-family: Arial, sans-serif;
  font-size: 4em;
  color: #4285f4;
  margin-bottom: 20px;
}

.google-search {
  width: 50%;
  padding: 10px;
  font-size: 1.2em;
  border: 1px solid #ddd;
  border-radius: 20px;
  outline: none;
}

.google-footer {
  position: absolute;
  bottom: 10px;
  text-align: center;
  color: #666;
  font-size: 0.8em;
}

/* Scary Message */
.scary-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2em;
  color: red;
  animation: flicker 1.5s infinite;
  text-align: center;
}

@keyframes glitch {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}