CSS
.btn {
background-color: #5f4ee4;
border: none;
color: #fff;
cursor: pointer;
border-radius: 8px;
font-weight: bold;
padding: 8px;
}
.btn:hover { filter: brightness(0.94); }
.btn:active { filter: brightness(1.1); }
.btn:focus {
outline: 3px solid #4444FF;
outline-offset: 2px;
}