
#gameStats {
    background: #000;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 13px 0;
    font-size: 15px;
    flex-wrap: wrap;
}

#gameStart {
    background: #000;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 13px 0;
    font-size: 15px;
    flex-wrap: wrap;
}

.stat-box {
    background: white;
    padding: 5px 10px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
#levelDisplay {
    font-size: 15px;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 10px;
}
#gameContainer {
    position: relative;
    width: 100%;
    max-width: 930px;
    height: 550px;
    /*background: linear-gradient(to bottom, #87CEEB, #E0F7FA);*/
    background-image: url("./chris-barbalis-8cc2q5dCOMw-unsplash.jpg");
    background-size:cover;
    overflow: hidden;
    margin: 0 auto 0px;
    border-radius: 0px;
}
#player {
    position: absolute;
    width: 80px;
    height: 80px;
    background-size: contain;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.raindrop {
    position: absolute;
    width: 80px;
    height: 20px;
    /*background: linear-gradient(to bottom, #4CAF50, #2E7D32);*/
    text-align: center;
    line-height: 40px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    z-index: 5;
}
#wordInput {
    width: 300px;
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid #212C68;
    border-radius: 25px;
    outline: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}
#wordInput:focus {
    border-color: #162830;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
#startBtn {
    padding: 10px 25px;
    font-size: 16px;
    background-color: #212C68;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}
#startBtn:hover {
    background-color: #398afd;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@keyframes floatUp {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-50px); opacity: 0; }
}
.bonus {
    position: absolute;
    font-weight: bold;
    font-size: 20px;
    animation: floatUp 1s forwards;
}
.correct-effect {
    color: #212C68;
}
.wrong-effect {
    color: #e74c3c;
}
.heart {
    color: #e74c3c;
    margin: 0 2px;
}
#accuracyMeter {
    width: 930px;
    height: 3px;
    background: #494949;
    border-radius: 0px;
    margin: 0px auto;
    overflow: hidden;
}
#accuracyBar {
    height: 100%;
    width: 100%;
    background: #212C68;
    transition: width 0.5s;
}
@keyframes fadeInOut {
    0% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0; transform: scale(0.8); }
}
.level-up {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    font-weight: bold;
    color: #e74c3c;
    z-index: 100;
    pointer-events: none;
}
.game-over {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    z-index: 100;
    width: 80%;
    max-width: 400px;
}
.game-over h2 {
    margin-top: 0;
    color: #e74c3c;
    font-size: 30px;
}
.game-over p {
    margin: 10px 0;
    font-size: 15px;
}
.game-over button {
    margin-top: 15px;
    padding: 8px 20px;
    background-color: #212C68;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
.game-over button:hover {
    background-color: #398afd;
}

.give {padding:15px 0 30px 0;float:left; font-size: 1em;color: #B2B2B2; letter-spacing:-0.04em;}
.give a{color: #595959;}