body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #00ff88;
  font-family: 'Courier New', monospace;
  text-align: center;
  min-height: 100vh; /* instead of fixed height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 3rem; /* give breathing room */
}


  

.message {
  max-width: 700px;
  line-height: 1.8;
  font-size: 1.25rem;
  padding: 2rem 1rem 1rem;
  text-shadow: 0 0 4px #00ff88;
}

  
  form {
    margin-top: 1rem;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  input[type="text"] {
    position: absolute;
    left: -9999px; /* Hidden input still captures real keystrokes */
  }
  
  #typed-text {
    color: #00ff88;
    text-shadow: 0 0 4px #00ff88;
    white-space: pre;
  }
  
  .terminal-cursor {
    display: inline-block;
    width: 10px;
    height: 1em;
    background: #00ff88;
    animation: blink 1s infinite;
    vertical-align: bottom;
    margin-left: 2px;
  }
  
  @keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
  }
  
  .feedback {
    margin-top: 1rem;
    color: red;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    display: none;
  }
  .pgp-block {
    background-color: #111;
    color: #0f0;
    font-family: monospace;
    font-size: 0.85rem;
    padding: 1rem;
    white-space: pre-wrap;
    word-wrap: break-word;
    border-left: 3px solid #0f0;
 }
.verify-banner {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: -1rem;
    padding: 0 1rem;
    max-width: 700px;
}


.codext-verification {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: #0f0;
    opacity: 0.6;
    letter-spacing: 1px;
}
