#clickButton {
    width: 200px;
    height: 200px;
    background-color: red;
    color: white;
    border-radius: 50%;
    font-size: 24px;
    border: none;
    padding: 20px;
    transition: background-color 0.3s;
}

#clickButton:hover {
    background-color: #b30000;
}

#confetti {
    font-size: 36px;
    color: #ff9800;
    display: none;
}

#clickCount {
    width: 150px;
    margin: 0 auto;
    background-color: #007bff;
    color: #ffffff;
}

#playAgainButton {
    display: none;
}

/* Prevent double-tap zoom on mobile devices */
html, body {
    touch-action: manipulation;
}