#game-container {
    position: relative;
    max-width: 400px;
	width:65%;
	margin: 15px auto;
	box-shadow: 0 0 15px #0ff;
}

#flipperCanvas {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.score-display {
    position: absolute;
	top: 10px;
	left: 50%;
    width: 350px;
    transform: translateX(-50%);
    font-size: 18px;
    color: #FFD700;
    font-weight: bold;
    text-shadow: 0 0 5px #fff;
}

.score-display #bille-display {
    color: lightgreen;
}

.gratte-result-ok,
.gratte-result-no {
    margin: 20px auto;
    padding: 10px;
    border-radius: 10px;
    font-weight: bold;
    max-width: 600px;
}

.gratte-result-ok {
    border: 1px dashed lightgreen;
    color: white;
}

.gratte-result-no {
    border: 1px dashed lightcoral;
    color: white;
}

canvas {
    touch-action: none;
}

