body {
    font-family: 'Orbitron', sans-serif;
    background-color: #1a1a2e;
    color: #ffffff;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    width: 90%;
    margin: auto;
    padding: 20px;
}

.pokemon {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid #ffffff;
}

.pokemon img {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 10px cyan);
}

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    border-radius: 10px;
    width: 350px;
    text-align: center;
    border: 3px solid cyan;
    box-shadow: 0 0 15px cyan;
}

.modal.active {
    display: block;
}

.modal-overlay.active {
    display: block;
}