body {

#app {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.scoreboard {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background: #111;
}

.player {
    text-align: center;
}

.name {
    font-size: 18px;
    opacity: 0.7;
}

.score {
    font-size: 64px;
    font-weight: bold;
}

.avg {
    font-size: 14px;
    opacity: 0.6;
}

.checkout {
    text-align: center;
    font-size: 24px;
    padding: 10px;
    background: #1a1a1a;
    color: #00ff88;
}

.pad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 10px;
}

.pad button {
    padding: 25px;
    font-size: 22px;
    border: none;
    border-radius: 12px;
    background: #222;
    color: white;
}

.pad button.hot {
    background: #00aa55;
    font-weight: bold;
}

.pad button:active {
    transform: scale(0.95);
}