body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: #f0f8ff;
}

#mascot {
    width: 150px;
    margin: 10px;
}

.menu button {
    padding: 10px 20px;
    margin: 10px;
    font-size: 18px;
}

.section {
    display: none;
    margin-top: 30px;
}

.correctAnimation {
    animation: bounce 0.5s;
}

@keyframes bounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.badge {
    padding: 10px;
    margin: 5px;
    background: gold;
    border-radius: 8px;
    display: inline-block;
}
