.ball {
    width: 20px;
    height: 20px;
    background-color: #32CD32;
    border-radius: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    animation-play-state: paused;
}

body {
    background-color: black;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

#settingsBtn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: white;
}

.info-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    padding: 5px;
}

dialog::backdrop {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

#infoModal, #settingsModal {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
}

#currentRound {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.2em;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.modal {
    width: 400px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
