:root {
    --poke-red: #EE1515;
    --poke-blue: #3B4CCA;
    --poke-yellow: #FFDE00;
}

body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e0e0e0 100%);
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.navbar {
    background: var(--poke-red) !important;
    box-shadow: 0 4px 15px rgba(238, 21, 21, 0.4);
}

.poke-ball {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, white 0%, white 45%, var(--poke-red) 45%, var(--poke-red) 100%);
    border: 4px solid #222;
    border-radius: 50%;
    position: relative;
}

.poke-ball::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #222;
    border-radius: 50%;
}

.card {
    transition: all 0.3s ease;
    border: 3px solid #222;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(238, 21, 21, 0.3);
}

.pokemon-img {
    background: #f8f9fa;
    padding: 20px;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.type-badge {
    font-size: 0.85rem;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: bold;
}

.header-title {
    font-family: 'Impact', 'Arial Black', sans-serif;
    letter-spacing: 2px;
    text-shadow: 3px 3px 0 #222;
}

/* Responsive Anpassungen */
@media (max-width: 576px) {
    .pokemon-img { min-height: 140px; padding: 10px; }
    .pokemon-img img { height: 100px; }
    .header-title { font-size: 2.2rem; }
}