/* Zusätzliche Custom Styles falls nötig */
.step-container {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.character-card:hover {
    transform: translateY(-2px);
}
