body {
    font-family: 'Comic Sans MS', 'Chalkboard SE', sans-serif;
    background-color: #87CEEB; /* Sky blue */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}

#app {
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    max-width: 600px;
    width: 90%;
}

h1, h2 {
    color: #FF6347; /* Tomato red */
}

button {
    background-color: #32CD32; /* Lime green */
    color: white;
    border: none;
    padding: 15px 25px;
    margin: 10px;
    font-size: 18px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.1s;
}

button:active {
    transform: scale(0.95);
}

button.secondary {
    background-color: #FFA500; /* Orange */
}

#next-btn {
    background-color: #FF69B4; /* Hot pink for progression */
}

input {
    padding: 15px;
    font-size: 20px;
    border: 3px solid #FFD700;
    border-radius: 10px;
    margin-bottom: 20px;
    width: 150px;
    text-align: center;
}

.stats {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: bold;
    color: #4B0082;
    margin-bottom: 20px;
}

/* New Feedback Styles */
#feedback-text {
    font-size: 24px;
    font-weight: bold;
    margin-top: 15px;
    min-height: 35px;
}

.feedback-correct {
    color: #32CD32; /* Bright green */
    animation: pop 0.3s ease-out;
}

.feedback-incorrect {
    color: #FF6347; /* Bright red */
    animation: pop 0.3s ease-out;
}

@keyframes pop {
    0% { transform: scale(0.8); }
    100% { transform: scale(1); }
}

.lb-container {
    display: flex;
    justify-content: space-around;
    text-align: left;
}

.lb-section {
    flex: 1;
    padding: 0 10px;
}

.lb-section h3 {
    text-align: center;
    font-size: 16px;
}

ol {
    padding-left: 20px;
    font-size: 14px;
}