body {
    font-family: 'Fredoka', sans-serif;
    background-color: #f0f8ff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #333;
}

#game-container {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 20px 40px;
    text-align: center;
    width: 90%;
    max-width: 800px;
}

h1 {
    color: #ff6347;
    font-size: 2.5em;
    margin-bottom: 10px;
}

#info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.2em;
}

#stats-container {
    display: flex;
    gap: 10px;
}

#score {
    background-color: #ffd700;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
}

#errors {
    background-color: #ff6347;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
}

#reset-button {
    background-color: #4682b4;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

#reset-button:hover {
    background-color: #5a9bd8;
}

#vowel-prompt h2 {
    font-size: 1.4em;
    font-weight: 400;
    margin-bottom: 10px;
}

#letter-display {
    font-size: 6em;
    font-weight: 700;
    color: #4682b4;
    margin-bottom: 20px;
}

#drop-zone-container {
    margin-bottom: 20px;
}

#drop-zone {
    width: 150px;
    height: 150px;
    border: 4px dashed #ccc;
    border-radius: 15px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s, border-color 0.3s;
}

#drop-zone.drag-over {
    background-color: #e0f7fa;
    border-color: #4682b4;
}

#drop-zone img {
    max-width: 90%;
    max-height: 90%;
}

#options-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    min-height: 150px;
}

.draggable-item {
    width: 120px;
    height: 120px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: grab;
    transition: transform 0.2s, box-shadow 0.2s;
}

.draggable-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.draggable-item.dragging {
    opacity: 0.5;
    cursor: grabbing;
}

.draggable-item img {
    max-width: 90%;
    max-height: 90%;
    pointer-events: none; /* Prevents image from interfering with drag events */
}

#feedback-message {
    margin-top: 20px;
    font-size: 1.5em;
    font-weight: bold;
    height: 30px;
}

.correct {
    color: #2e8b57;
}

.incorrect {
    color: #dc143c;
}