@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
  font-family: 'Press Start 2P', cursive;
  background-color: #0a0a0a;
  color: #00ffcc;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

.container {
  text-align: center;
  width: 90%;
  max-width: 700px;
}

h1 {
  font-size: 1.8rem;
  color: #00ffe5;
  text-shadow: 0 0 8px #00ffe5;
  margin-bottom: 1rem;
}

.subtitulo {
  font-size: 1rem;
  color: #ff66cc;
  text-shadow: 0 0 5px #ff66cc;
  margin-bottom: 2rem;
}

.card {
  background-color: rgba(0, 0, 0, 0.8);
  border: 3px solid #00ffcc;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 0 20px #00ffcc;
}

label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

input {
  width: 80%;
  padding: 1.2rem;
  font-family: 'Press Start 2P', cursive;
  font-size: 1rem;
  background-color: #1a1a1a;
  border: 2px solid #ff66cc;
  color: #00ffcc;
  border-radius: 10px;
  outline: none;
  text-align: center;
  margin-bottom: 1.5rem;
}

button {
  display: block;
  width: 85%;
  margin: 0 auto;
  background-color: #ff66cc;
  color: #000;
  font-family: 'Press Start 2P', cursive;
  font-size: 1.2rem;
  padding: 1.3rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 10px #ff66cc;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #00ffcc;
  color: #000;
  box-shadow: 0 0 20px #00ffcc;
  transform: scale(1.05);
}

.resultado {
  margin-top: 2rem;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border: 2px dashed #00ffcc;
  border-radius: 10px;
  text-shadow: 0 0 5px #00ffe5;
}

footer {
  margin-top: 2rem;
  font-size: 0.7rem;
  color: #888;
  text-shadow: 0 0 5px #00ffcc;
}
