body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f9f9f9;
    /* Novērš netīšu lapas tuvināšanu bērniem bakstot ekrānu */
    touch-action: manipulation; 
}
#game-container {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 90%;
    max-width: 400px;
}
#image-container {
    font-size: 5rem;
    margin-bottom: 1rem;
}
#drop-zone {
    width: 80px;
    height: 80px;
    border: 3px dashed #ccc;
    margin: 0 auto 2rem;
    font-size: 3rem;
    line-height: 80px;
    color: #aaa;
    border-radius: 10px;
}
.letters {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.letter-btn {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    border: none;
    background-color: #ffd700;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s;
}
.letter-btn:active {
    transform: scale(0.9);
}
.correct {
    background-color: #4caf50;
    color: white;
}
.wrong {
    background-color: #f44336;
    color: white;
    animation: shake 0.5s;
}
@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}
