body {
    font-family: 'Verdana', sans-serif;
    background-color: #2c3e50;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.pokedex {
    background-color: #ff3e3e; /* Rojo Pokédex */
    border: 4px solid #8b0000;
    border-radius: 15px;
    padding: 20px;
    width: 320px;
    box-shadow: 10px 10px 0px rgba(0,0,0,0.3);
    text-align: center;
}

h1 {
    color: white;
    font-size: 1.5rem;
    text-shadow: 2px 2px #000;
    margin-top: 0;
}

.search-box {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

input {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    border: none;
    outline: none;
}

button {
    padding: 10px 15px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

button:hover { background-color: #111; }

.screen {
    background-color: #98cb98; /* Verde GameBoy clásico */
    border: 4px solid #555;
    border-radius: 10px;
    padding: 20px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

img {
    width: 150px;
    height: 150px;
    image-rendering: pixelated;
    transition: transform 0.3s;
}

img:hover { transform: scale(1.1); }

h2 {
    margin: 10px 0 5px 0;
    text-transform: capitalize;
    color: #333;
}

.stats {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #444;
}

.type {
    background: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid #333;
}