#score-display {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 25px;
    border-radius: 10px;
    color: white;
    font-size: 18px;
    backdrop-filter: blur(10px);
}

.score-item {
    margin: 5px 0;
}

.label {
    font-weight: bold;
    margin-right: 10px;
    color: #ffd700;
}

#distance {
    color: #00ff00;
    font-weight: bold;
    font-size: 24px;
}

#highscore {
    color: #ff6b6b;
    font-weight: bold;
}

#game-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 30px 50px;
    border-radius: 15px;
    font-size: 24px;
    text-align: center;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

#game-message:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.05);
}

#game-message.hidden {
    display: none;
}
