/* Highlight target for a moment */
@keyframes highlight {
    0% { background-color: rgba(255, 255, 0, 0.5); }
    100% { background-color: transparent; }
}

:target {
    animation: highlight 2s ease-out;
}
