/* Kein Scrollen, kein Zoom, keine Gesten */
html, body {
    touch-action: manipulation;
    overscroll-behavior: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #111;
    color: #eee;
    font-family: "Segoe UI", sans-serif;
    text-align: center;
}

/* Game Container */
#game {
    max-width: 500px;
    margin: 20px auto;
    padding: 10px;
}

/* Timer + Score */
#timer {
    font-size: 40px;
    margin-bottom: 10px;
}

#score {
    font-size: 50px;
    margin-bottom: 20px;
}

/* Countdown SICHTBAR machen */
#countdown {
    font-size: 70px;
    font-weight: bold;
    color: #0f0;
    height: 90px;
    line-height: 90px;
    margin-top: 10px;
}

/* Drum */
#drum {
    position: relative;
    width: 240px;
    height: 240px;
    margin: 20px auto;
    background: url('snare.png') center/cover no-repeat;
    pointer-events: none;
}

/* Hit-Zone */
#hitzone {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(0,0,0,0);
    pointer-events: auto;
    z-index: 10;
    touch-action: manipulation;
}

/* Buttons */
button {
    padding: 12px 20px;
    background: #0f0;
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 18px;
    margin-top: 10px;
}

button:hover {
    background: #b6ff00;
}
