body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.container {
    text-align: center;
}

h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.track {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 90%;
    height: 50px;
    margin: 20px auto;
    background-color: #ddd;
    border: 2px solid #ccc;
    border-radius: 25px;
}

.player {
    position: absolute;
    bottom: 0;
    font-size: 2em;
    transition: left 0.1s;
}

#player1 {
    left: 0;
}

#player2 {
    left: 0;
}

.buttons {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: 20px auto;
}

.tap-btn {
    width: 45%;
    padding: 10px;
    font-size: 1.5em;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.tap-btn:active {
    background-color: #0056b3;
}

#result {
    margin: 20px 0;
    font-size: 1.5em;
}

.reset-btn {
    padding: 10px 20px;
    font-size: 1.2em;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: none;
}

.reset-btn:active {
    background-color: #218838;
}
