body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f4f8;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 90%;
    max-width: 900px;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.generation-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.generation-tabs button {
    background-color: #e0e0e0;
    border: none;
    color: #333;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.generation-tabs button.active {
    background-color: #4a90e2;
    color: white;
}

.starter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.starter-buttons button {
    background-color: #4a90e2;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 120px;
}

.starter-buttons button:hover {
    background-color: #357abd;
}

.moves-container {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
}

.evolution-moves {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.base-stage, .first-evolution, .final-evolution {
    flex: 1;
    margin: 10px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-width: 200px;
}

h2, h3 {
    color: #2c3e50;
    text-align: center;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    background-color: #e8f4f8;
    margin: 8px 0;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.2s ease;
}

ul li:hover {
    background-color: #d0e1f0;
}

@media (max-width: 768px) {
    .evolution-moves {
        flex-direction: column;
    }
    
    .base-stage, .first-evolution, .final-evolution {
        margin: 10px 0;
    }
}