#tapZone {
    cursor: pointer;
    user-select: none;
    transition: transform 0.1s ease, background 0.1s ease;
}
#tapZone:active {
    transform: scale(0.98);
    background: rgba(0, 113, 227, 0.1);
}