body {
    background-color: #0a0a0a;
    color: #00ff41;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 10vh 20px 20px 20px;
    box-sizing: border-box;
    height: 100vh;
    margin: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 65, 0.05) 2px, rgba(0, 255, 65, 0.05) 4px);
}

h1 {
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.6);
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
    line-height: 1.4;
}

.input-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    width: 100%;
    max-width: 400px;
}

#input {
    background: #000;
    border: 1px solid #00ff41;
    color: #00ff41;
    padding: 10px 15px;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    flex: 1;
    min-width: 200px;
    box-sizing: border-box;
    box-shadow: inset 0 0 5px rgba(0, 255, 65, 0.2);
}

#btn {
    background: #00ff41;
    color: #000;
    border: 1px solid #00ff41;
    padding: 10px 20px;
    font-family: inherit;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s;
}

#btn:hover {
    background: #000;
    color: #00ff41;
    box-shadow: 0 0 10px #00ff41;
}

#results {
    margin-top: 40px;
    padding: 30px;
    border: 2px dashed #00ff41;
    background: rgba(0, 255, 65, 0.05);
    min-width: 250px;
    max-width: 100%;
    min-height: 250px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    box-shadow: inset 0 0 15px rgba(0, 255, 65, 0.3), 0 0 15px rgba(0, 255, 65, 0.1);
}

.foto {
    width: 150px;
    height: 150px;
    image-rendering: pixelated; /* Deixa o sprite com visual mais retrô */
    filter: drop-shadow(0 0 8px #00ff41);
}

.name {
    text-transform: uppercase;
    margin: 15px 0 5px 0;
    letter-spacing: 2px;
}

.tipo {
    text-transform: uppercase;
    font-size: 0.9em;
    opacity: 0.8;
}